feat: Replace 'test' job with 'build' job in Forgejo workflows
All checks were successful
/ build (push) Successful in 1m32s

- Jobs in Forgejo workflows are updated to remove the 'test' job and expand the 'build' job.
- This is performed to streamline the workflows and employ a more central build job instead of individual testing ones.
- Also, the 'nix build' command is updated in the 'build' job for proper syntax.
This commit is contained in:
Harald Hoyer 2024-06-27 14:34:16 +02:00
parent 067856e165
commit 1fd6733cfc

View file

@ -1,15 +1,7 @@
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
- run: nix build -L .#runner