diff options
| author | seth <[email protected]> | 2023-03-11 22:48:14 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-03-11 22:48:14 -0500 |
| commit | a2cf60a228ed725a4a2210bbdc5ccdad5c631137 (patch) | |
| tree | f6c277d599fb51a95a596a9c3ae295c46deb5d2f | |
| parent | d4552910a0fcbf271160a3f2ed84ebc650aed066 (diff) | |
chore(gh): label steps in check.yml
| -rw-r--r-- | .github/workflows/check.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index f35e930..fa22db6 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -13,13 +13,16 @@ jobs: check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: checkout repo + uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v19 + - name: install nix + uses: cachix/install-nix-action@v19 with: github_access_token: ${{ secrets.GITHUB_TOKEN }} - - run: | + - name: run nix flake check + run: | export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 export NIXPKGS_ALLOW_BROKEN=1 export NIXPKGS_ALLOW_UNFREE=1 |
