Skip to content

Commit

Permalink
Run tests on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianfreyer authored and felixwilhelm committed Jan 28, 2022
1 parent 5f24a1d commit e844819
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Tests

on: [push]

jobs:
cargo-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1

- name: Install latest rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true

- uses: actions-rs/cargo@v1
with:
command: test
args: --release --all-features

0 comments on commit e844819

Please sign in to comment.