Skip to content

Bump image from 0.24.7 to 0.25.1 #53

Bump image from 0.24.7 to 0.25.1

Bump image from 0.24.7 to 0.25.1 #53

Workflow file for this run

---
name: rust-clippy analyze
on: # yamllint disable-line rule:truthy
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
rust-clippy-analyze:
name: Run rust-clippy analyzing
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Use cache
uses: Swatinem/rust-cache@v2
- name: Run clippy
uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
github_token: ${{ secrets.GITHUB_TOKEN }}