Skip to content

CI: Update actions/checkout usages to v4 #196

CI: Update actions/checkout usages to v4

CI: Update actions/checkout usages to v4 #196

Workflow file for this run

name: Clippy
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Clippy (default)
run: |
cargo clippy -- -D warnings
- name: Clippy (all features)
run: |
cargo clippy --all-features -- -D warnings