Update CI and add lint (#18)

* fix: update actions/checkout from v3 to v4

* update(CI): add clippy
This commit is contained in:
qwjyh 2024-12-01 21:13:42 +09:00 committed by GitHub
parent 0abf9c0693
commit 8fc8029435
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,13 +10,17 @@ env:
CARGO_TERM_COLOR: always
jobs:
build:
build-and-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup
run: rustup component add clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Lint
run: cargo clippy --all-targets --all-features