Basic Rust workflow for both crates (#35)

further improvements would be
* code coverage
* skipping changes that doesn't touch that two crates
This commit is contained in:
Sergey Kaunov
2023-09-23 15:30:46 +03:00
committed by GitHub
parent f28e49a5e5
commit 9a068afafa

14
.github/workflows/rust.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
name: Rust test suite
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- run: cargo test --all-features
working-directory: ./rust-k256
- run: cargo test --all-features
working-directory: ./rust-arkworks