Skip to content

feat(turn-off): replace the 403 status code by a 500 status code when… #10

feat(turn-off): replace the 403 status code by a 500 status code when…

feat(turn-off): replace the 403 status code by a 500 status code when… #10

Workflow file for this run

name: "Format & Clippy"
on:
push:
branches: [main]
pull_request:
jobs:
fmt:
runs-on: ubuntu-latest
name: stable / fmt
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install stable
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: cargo fmt --check
run: cargo fmt --check
clippy:
runs-on: ubuntu-latest
name: stable / clippy
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install stable
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: cargo clippy
uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-check'
github_token: ${{ secrets.GITHUB_TOKEN }}