Update Builder image #378
Workflow file for this run
This file contains 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 | |
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 |