Skip to content

Commit

Permalink
CI: Create a github action which runs all unit-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikDeSmedt committed Mar 6, 2024
1 parent 2ec2d3a commit 3c94f0f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test-rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: rust-unit-tests
run-name: $${github.actor}} - Unit Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --all-features

0 comments on commit 3c94f0f

Please sign in to comment.