We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56e7358 commit d8e8261Copy full SHA for d8e8261
.github/workflows/build.yml
@@ -556,6 +556,13 @@ jobs:
556
cargo fmt --check
557
exit $(docker wait gateway-format)
558
559
+ - name: Clippy check
560
+ run: |
561
+ docker run --name=gateway-clippy --net=host -v $PWD/output:/output \
562
+ ${{ fromJSON(needs.build.outputs.stable_tags).gateway-test }} \
563
+ cargo clippy --all-features --all-targets -- -D warnings
564
+ exit $(docker wait gateway-clippy)
565
+
566
check_front:
567
runs-on: ubuntu-latest
568
needs:
0 commit comments