Files
workflow-actions-test/.gitea/workflows/trigger_devbox.yaml
Chris Daßler 4b2d91d65c
Some checks failed
Test / Build (push) Successful in 4s
Test / Test (push) Successful in 4s
Testing with devbox / test (push) Failing after 1m19s
Cleanup
2025-02-13 21:53:09 +01:00

23 lines
497 B
YAML

name: Testing with devbox
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install devbox
uses: jetify-com/devbox-install-action@v0.12.0
with:
project-path: './src'
devbox-version: 0.13.7
disable-nix-access-token: true
- name: Run arbitrary commands
run: devbox run -- echo "done"
- name: Run a script called test
run: devbox run test