No description
Find a file
Nick Novitski 2cd3e161f5 fix: Fail if build fails!
The pipefail option does not catch usage from subshells like this:

```
echo <<<"$(echo foo; exit 1)"
```

Since that's how `nix develop` is called in the script, when the action
could not build an environment, it would still be treated as having run
successfully, and the job would continue.

It's still hypothetically possible for this to happen if `env` or `bash
-c 'echo $PATH'` fail.  Seems unlikely!  But maybe there's something to
be done there.
2023-10-19 10:15:04 -07:00
.github/workflows Initial commit 2023-10-18 16:57:10 -07:00
.envrc Initial commit 2023-10-18 16:57:10 -07:00
.gitignore Initial commit 2023-10-18 16:57:10 -07:00
action.yml fix: Pass arguments 2023-10-19 10:13:44 -07:00
flake.lock Initial commit 2023-10-18 16:57:10 -07:00
flake.nix Initial commit 2023-10-18 16:57:10 -07:00
LICENSE Initial commit 2023-10-18 16:57:10 -07:00
nix-develop-gha.sh fix: Fail if build fails! 2023-10-19 10:15:04 -07:00