Skip to content

Bump serde_json from 1.0.87 to 1.0.107 #666

Bump serde_json from 1.0.87 to 1.0.107

Bump serde_json from 1.0.87 to 1.0.107 #666

Workflow file for this run

---
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