CI for rustcrypto-linux
This commit is contained in:
parent
bab8eb8124
commit
0fa21700d5
1 changed files with 22 additions and 0 deletions
22
.github/workflows/test-linux-rustcrypto.yml
vendored
Normal file
22
.github/workflows/test-linux-rustcrypto.yml
vendored
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue