nix-runner-container/.forgejo/workflows/nix.yaml
Harald Hoyer 067856e165
Some checks failed
/ test (push) Successful in 13s
/ build (push) Failing after 12s
feat: Add test job in Nix workflow
- A new test job is added in the Nix Github Actions workflow
- This test runs on ubuntu, and checks out the current repository and lists its content
- These steps were added to increase visibility on the test environment
2024-06-27 14:33:24 +02:00

16 lines
249 B
YAML

on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
pwd
ls -al
build:
runs-on: nix
steps:
- uses: actions/checkout@v3
- run: nix build -L .runner