Skip to content

Commit

Permalink
ci: Add test job
Browse files Browse the repository at this point in the history
  • Loading branch information
aidan46 committed May 10, 2024
1 parent 65de032 commit 535fc9e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,13 @@ jobs:
run: RUSTFLAGS="-D warnings" cargo build -p polka-storage-node --features runtime-benchmarks
- name: Build in release mode
run: RUSTFLAGS="-D warnings" cargo build --release

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: List version
run: cargo --version
- name: Run tests
run: RUSTFLAGS="-D warnings" cargo test --workspace

0 comments on commit 535fc9e

Please sign in to comment.