chore: Bump serde from 1.0.210 to 1.0.211 #811
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build_and_test: | |
name: Build and Test | |
runs-on: ${{ matrix.os }} | |
env: | |
RUST_BACKTRACE: 1 | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [windows-latest, ubuntu-latest] | |
toolchain: [stable] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
prefix-key: ${{ matrix.os }} | |
shared-key: "pdylanross/fatigue" | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{matrix.toolchain}} | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --all-features | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --all-targets | |
cargo_sort: | |
runs-on: ubuntu-latest | |
name: Cargo Sort check | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v2 | |
- uses: actions-rs/[email protected] | |
with: | |
crate: cargo-sort | |
version: latest | |
- run: cargo sort -c | |
clippy_lint: | |
runs-on: ubuntu-latest | |
name: Cargo Clippy Check | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: clippy | |
- uses: Swatinem/rust-cache@v2 | |
- uses: actions-rs/clippy-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --no-deps |