Merge pull request #327 from akirak/dependabot/github_actions/github-… #159
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 flake-utils | |
| on: | |
| push: | |
| paths: | |
| # Set this to the directory of the template | |
| - flake-utils/** | |
| - .github/workflows/check-flake-utils.yml | |
| workflow_dispatch: | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: check-flake-utils-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| path: ./tmp | |
| - name: Set up Nix | |
| uses: ./tmp/.github/actions/setup-nix | |
| with: | |
| cachix-token: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - run: nix flake new -t ./tmp#flake-utils ./work | |
| - name: Prepare the project | |
| working-directory: work | |
| run: | | |
| git init | |
| git add . | |
| # Run any task to check your flake | |
| - run: nix build '.#hello' -L | |
| working-directory: work |