Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
branches:
- master

env:
clippy_rust_version: '1.82'

jobs:
check:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -50,3 +53,13 @@ jobs:
- uses: Swatinem/rust-cache@v2
- name: check with all-features
run: cargo hack --rust-version --no-private --no-dev-deps check --all-features

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.clippy_rust_version }}
components: clippy
- run: cargo clippy --all-features --tests -- -D warnings
Loading