From 0fa21700d506dc0883dff1e0c9c8682f62686db2 Mon Sep 17 00:00:00 2001 From: Wakahisa Date: Sun, 2 Apr 2023 13:07:48 +0200 Subject: [PATCH] CI for rustcrypto-linux --- .github/workflows/test-linux-rustcrypto.yml | 22 +++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test-linux-rustcrypto.yml diff --git a/.github/workflows/test-linux-rustcrypto.yml b/.github/workflows/test-linux-rustcrypto.yml new file mode 100644 index 0000000..082fcb8 --- /dev/null +++ b/.github/workflows/test-linux-rustcrypto.yml @@ -0,0 +1,22 @@ +name: Test-Linux-RustCrypto + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build_and_test: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cd matter; cargo build --verbose --no-default-features --features crypto_rustcrypto + - name: Run tests + run: cd matter; cargo test --verbose --no-default-features --features crypto_rustcrypto -- --test-threads=1