Skip to content

Bump serde from 1.0.215 to 1.0.217 #409

Bump serde from 1.0.215 to 1.0.217

Bump serde from 1.0.215 to 1.0.217 #409

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: rust
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/[email protected]
with:
command: check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/[email protected]
with:
command: test
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/[email protected]
with:
command: fmt
args: --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add clippy
- uses: actions-rs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features