Skip to content

Bump serde_with from 3.14.1 to 3.15.0 in the all group #225

Bump serde_with from 3.14.1 to 3.15.0 in the all group

Bump serde_with from 3.14.1 to 3.15.0 in the all group #225

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@v5
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.9
- name: "Run clippy (ignores errors, this is just a check)"
run: cargo clippy
continue-on-error: true