From 039d638557edfd3c3d45ceb730ac1659526e0dc6 Mon Sep 17 00:00:00 2001 From: Lucia Quirke Date: Thu, 4 Apr 2024 03:16:45 +0000 Subject: [PATCH] Add python tests to CI --- .github/workflows/rust-python.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/rust-python.yml diff --git a/.github/workflows/rust-python.yml b/.github/workflows/rust-python.yml new file mode 100644 index 0000000..c702c41 --- /dev/null +++ b/.github/workflows/rust-python.yml @@ -0,0 +1,26 @@ +name: Rust + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose + - name: Build Python + run: pip install . + - name: Run Python tests + run: pytest --verbose \ No newline at end of file