Skip to content

⬆️ Bump serde from 1.0.204 to 1.0.209 #265

⬆️ Bump serde from 1.0.204 to 1.0.209

⬆️ Bump serde from 1.0.204 to 1.0.209 #265

Workflow file for this run

on: push
env:
CARGO_TERM_COLOR: always
CARGO_UNSTABLE_SPARSE_REGISTRY: true
jobs:
check:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: ⬇️ checkout repository
uses: actions/checkout@v4
- name: 🛠 setup cargo toolchain
uses: dtolnay/rust-toolchain@stable
- name: ♻️ cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: ${{ matrix.os }}
- name: ✅ run cargo check
run: cargo check
lint:
needs: check
runs-on: ubuntu-latest
steps:
- name: ⬇️ checkout repository
uses: actions/checkout@v4
- name: 🛠 setup cargo toolchain
uses: dtolnay/rust-toolchain@stable
- name: ♻️ cache Rust dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: ubuntu-latest
- name: 🔍 run cargo fmt
run: cargo fmt --check
- name: 🔍 run cargo fix
run: cargo fix
- name: 🔍 run cargo clippy
run: cargo clippy -- -Dwarnings