Skip to content

Commit

Permalink
ci: add tests
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Viennot <[email protected]>
  • Loading branch information
nviennot committed Nov 2, 2021
1 parent a2e588b commit dfe88f4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: rustup component add clippy
- uses: actions/checkout@v2
- uses: actions-rs/clippy-check@v1
with:
# The token is required to post clippy problems on the github result page.
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
on: [push, pull_request]
name: Tests
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: make test

0 comments on commit dfe88f4

Please sign in to comment.