Skip to content

Commit

Permalink
Add CI to test on push
Browse files Browse the repository at this point in the history
  • Loading branch information
Mroik committed Sep 20, 2023
1 parent dd000c6 commit 9be27bf
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: tests
run-name: ${{ github.sha }} test job
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: Run cargo test
uses: actions-rs/cargo@v1
continue-on-error: true
with:
command: test

0 comments on commit 9be27bf

Please sign in to comment.