Merge pull request #627 from shimeoki/feat/nixfmt-indent/main #1592
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: "Build" | |
| on: | |
| pull_request: | |
| push: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: cachix/install-nix-action@v31 | |
| - uses: cachix/cachix-action@v16 | |
| with: | |
| name: pre-commit-hooks | |
| signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
| - run: rm -rf /opt& | |
| - run: nix-build --keep-going | |
| tests-flakes: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: cachix/install-nix-action@v31 | |
| - uses: cachix/cachix-action@v16 | |
| with: | |
| name: pre-commit-hooks | |
| signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
| - run: rm -rf /opt& | |
| - name: Check nixpkgs-unstable | |
| run: nix flake check -L --show-trace | |
| - run: nix eval .#lib.x86_64-linux.run --show-trace | |
| tests-flakes-stable: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: cachix/install-nix-action@v31 | |
| - uses: cachix/cachix-action@v16 | |
| with: | |
| name: pre-commit-hooks | |
| signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
| - run: rm -rf /opt& | |
| - name: Check nixpkgs-stable | |
| run: nix flake check -L --show-trace --override-input nixpkgs github:NixOS/nixpkgs/nixos-25.05 |