build(deps): bump zip from d45bdcc
to 4b57e8f
in /userspace/ksud
#590
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: Rustfmt check | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- '.github/workflows/rustfmt.yml' | |
- 'userspace/ksud/**' | |
pull_request: | |
branches: | |
- 'main' | |
paths: | |
- '.github/workflows/rustfmt.yml' | |
- 'userspace/ksud/**' | |
permissions: | |
checks: write | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- uses: LoliGothick/rustfmt-check@master | |
with: | |
token: ${{ github.token }} | |
working-directory: userspace/ksud |