Fmt Check #468
This file contains hidden or 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: Fmt Check | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main, next ] | |
| schedule: | |
| - cron: '0 23 * * 4' | |
| env: | |
| RUST_BACKTRACE: full | |
| jobs: | |
| fmt_check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - uses: extractions/setup-just@v3 | |
| - uses: hustcer/setup-nu@v3.20 | |
| with: | |
| version: '0.105.1' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PAT_GLOBAL }} | |
| - name: Just version | |
| run: just --version | |
| - name: Fmt Check | |
| run: just fmt_check |