Skip to content

chore(deps): bump utoipa-swagger-ui from 8.0.3 to 8.1.0 #75

chore(deps): bump utoipa-swagger-ui from 8.0.3 to 8.1.0

chore(deps): bump utoipa-swagger-ui from 8.0.3 to 8.1.0 #75

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 }}