Bump serde_json from 1.0.87 to 1.0.107 #666
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test | |
on: | |
push: | |
paths-ignore: | |
- 'data/**' | |
pull_request: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust (stable) | |
run: | | |
rustup update stable | |
rustup component add rustfmt | |
rustup component add clippy | |
- name: Check formatting | |
run: cargo fmt --check | |
- name: Check Clippy | |
run: cargo clippy -- -Dwarnings | |
- name: Run tests | |
run: cargo test |