Dependabot(deps): Bump nixpkgs from b12141e to 1c3fe55
#361
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: "Check Formatting" | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| check-formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checking out the repository | |
| uses: actions/checkout@v6.0.2 | |
| - name: Setup | |
| uses: ./.github/actions/common-setup | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| CACHIX_SIGNING_KEY: ${{ secrets.CACHIX_SIGNING_KEY }} | |
| - name: Check formatting | |
| shell: bash | |
| run: | | |
| nix fmt -- --fail-on-change |