Skip to content

Commit

Permalink
ci: update worlflow
Browse files Browse the repository at this point in the history
  • Loading branch information
remiroyc committed Sep 15, 2023
1 parent 85f652a commit b2b141c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
command: check

test:
name: Test Suite
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
Expand All @@ -48,8 +48,8 @@ jobs:
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test --workspace
command: cargo test --workspace

lints:
name: Lints
runs-on: ubuntu-latest
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/clippy_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on: [push, pull_request]
name: Clippy check
jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b2b141c

Please sign in to comment.