fix: CI #369
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |