Bump cachix/cachix-action from 13 to 14 #26
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: "Nix flake check" | |
on: | |
pull_request: | |
push: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: cachix/install-nix-action@v24 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup cachix | |
uses: cachix/cachix-action@v14 | |
with: | |
name: nixos-cn | |
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
- name: Nix flake check | |
run: nix flake check --verbose --print-build-logs |