1
0
Fork 0
mirror of https://git.madhouse-project.org/actions/nix.git synced 2025-01-18 16:41:31 +01:00
nix/.forgejo/workflows/nix-shell.yaml
Gergely Nagy 18b41c0333 Add a nix/shell action
Since it's basically the same as `nix/develop`, with only the nix
command changed, leverage the existing script.

Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
2023-09-22 21:43:51 +02:00

39 lines
835 B
YAML

---
name: test nix/shell
on:
push:
jobs:
nix/shell:
runs-on: nixos-flakes
steps:
- name: checkout
uses: actions/checkout@v3
- name: run a command within a Nix shell
uses: ./shell
with:
flake: ./shell/test
package: "hello"
run: |
hello
- name: ensure we're not in a dev environment
uses: ./shell
with:
flake: ./shell/test
package: "hello"
run: |
set -x
# if we have gcc installed, we're in a dev environment.
# we don't want to be in a dev environment
type -p gcc >/dev/null && exit 1
hello
- name: no commands should still work
uses: ./shell
with:
flake: ./shell/test
package: "hello"