chore(deps): lock file maintenance #701
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: Linters | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| linters: | |
| name: Linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@c723f3a885e3f1d866d91f4f0c33dd44b1fc7c60 # v18 | |
| continue-on-error: true # Self-hosted runners already have Nix installed | |
| - name: Enable binary cache | |
| uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16 | |
| with: | |
| name: colmena | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - name: Check EditorConfig | |
| run: nix-shell --run "editorconfig-checker" | |
| - name: Check flake8 | |
| run: nix-shell --run "flake8 manual/preprocess.py" | |
| - name: Check rustfmt | |
| run: nix-shell --run "cargo fmt --check" |