forked from milvus-io/milvus-sdk-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (53 loc) · 1.57 KB
/
main.yml
File metadata and controls
60 lines (53 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Unittest
on:
push:
paths:
- 'src/**'
- 'tests/**'
- 'milvus-proto/**'
- 'build.rs'
- '.github/**'
- 'docker-compose.yml'
# Triggers the workflow on push or pull request events but only for the master branch
pull_request:
paths:
- 'src/**'
- 'tests/**'
- 'milvus-proto/**'
- 'build.rs'
- '.github/**'
- 'docker-compose.yml'
jobs:
# This workflow contains a single job called "build"
build:
name: Unittest AMD64 Ubuntu ${{ matrix.ubuntu }}
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
ubuntu: [18.04]
env:
UBUNTU: ${{ matrix.ubuntu }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Setup Milvus
run: sudo docker-compose up -d && sleep 15s
- name: Setup protoc
uses: arduino/setup-protoc@v1.1.2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
# Runs a single command using the runners shell
- name: Run Unittest
run: RUST_BACKTRACE=1 cargo test
# - name: Upload coverage to Codecov
# if: github.repository == 'milvus-io/milvus-sdk-rust'
# uses: codecov/codecov-action@v1
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./coverage.project.out
# name: ubuntu-${{ matrix.ubuntu }}-unittests