feat: Add test job in Nix workflow
Some checks failed
/ test (push) Successful in 13s
/ build (push) Failing after 12s

- 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
This commit is contained in:
Harald Hoyer 2024-06-27 14:33:24 +02:00
parent 9f53232733
commit 067856e165

View file

@ -1,5 +1,13 @@
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
pwd
ls -al
build:
runs-on: nix
steps: