NixOS-based container for running GitHub actions
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

test building with runner on gh

+11
+11
.github/workflows/build2.yaml
··· 26 26 with: 27 27 fetch-depth: 0 28 28 29 + - name: test 30 + run: | 31 + echo $HOME 32 + ls -la $HOME 33 + echo ${{ github.workspace }} 34 + ls -la ${{ github.workspace }} 35 + 36 + - name: Configure safe directories 37 + run: | 38 + git config --global safe.directory=${{ github.workspace }} 39 + 29 40 - name: Reuse Lint 30 41 run: | 31 42 nix run .#reuse-lint