Update heck requirement from 0.3.1 to 0.5.0 in /proc-macro-definitions #411
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: Deny Warnings | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
branches: [develop] | |
push: | |
branches: [develop] | |
jobs: | |
deny-warnings: | |
name: Deny Warnings | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
profile: minimal | |
components: clippy | |
- run: cat CI.toml >> Cargo.toml | |
- run: cd proc-macro-definitions && cargo clippy --locked --all-targets --no-default-features -- -D warnings | |
- run: cd proc-macro-definitions && cargo clippy --locked --all-targets -- -D warnings | |
- run: cd proc-macro-definitions && cargo clippy --locked --all-targets --all-features -- -D warnings | |
- run: cargo clippy --locked --all-targets --no-default-features -- -D warnings | |
- run: cargo clippy --locked --all-targets -- -D warnings | |
- run: cargo clippy --locked --all-targets --all-features -- -D warnings | |
# TODO: Fix and then deny these too: | |
- run: cd book && cargo clippy --all-targets --locked --no-default-features | |
- run: cd book && cargo clippy --all-targets --locked | |
- run: cd book && cargo clippy --all-targets --locked --all-features |