feat: Replace 'test' job with 'build' job in Forgejo workflows
All checks were successful
/ build (push) Successful in 1m32s
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:
parent
067856e165
commit
1fd6733cfc
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue