Skip to content

Commit

Permalink
Add a GitHub action to run the test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
leocassarani committed Jan 3, 2024
1 parent 06f0c1d commit ceeec47
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Test
- run: cargo test

0 comments on commit ceeec47

Please sign in to comment.