mirror of
https://git.madhouse-project.org/actions/nix.git
synced 2025-01-18 16:41:31 +01:00
40 lines
835 B
YAML
40 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"
|