Skip to content

Update Builder image #378

Update Builder image

Update Builder image #378

Workflow file for this run

name: Clippy
on:
push:
branches:
- main
- staging
- trying
pull_request:
jobs:
clippy_check:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
rust:
- 1.69
# Help identify breakages about to land in stable earlier
- stable
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
# Note: some codegen tools actually format the code, so add rustfmt
profile: minimal
toolchain: stable
components: clippy, rustfmt
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -D warnings