Skip to content

Bump serde from 1.0.202 to 1.0.203 in the all group #64

Bump serde from 1.0.202 to 1.0.203 in the all group

Bump serde from 1.0.202 to 1.0.203 in the all group #64

Workflow file for this run

---
name: Clippy
# Trigger the workflow on push or pull request
"on":
push:
branches-ignore:
- main
pull_request:
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup sccache
uses: mozilla-actions/[email protected]
with:
version: "v0.4.2"
- name: "Run clippy (ignores errors, this is just a check)"
run: cargo clippy
continue-on-error: true