-
Notifications
You must be signed in to change notification settings - Fork 14
53 lines (44 loc) · 1.06 KB
/
test.yml
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
name: Integration Test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install protobuf compiler
run: |
sudo apt install -y protobuf-compiler
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build and Check Rust unit tests and harness tests all pass
run: |
git submodule update --init
make build
make unit-test
make integration-test
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.11.4"
- name: Build and Check Python harness tests all pass
run: |
cd ./binding/python
pip3 install -r requirements.txt
make install
cd ./tests
pip3 install -r requirements.txt
make test
cd ../../
- name: Lint Rust codes
run: |
cargo clippy