Bump serde_with from 3.14.1 to 3.15.0 in the all group #225
Workflow file for this run
This file contains hidden or 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: 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 |