Files
workflow-actions-test/.gitea/workflows/trigger_devbox.yaml
Chris Daßler 6d842f1410
Some checks failed
Test / Build (push) Successful in 4s
Test / Test (push) Successful in 3s
Testing with devbox / test (push) Failing after 26s
Add push to trigger workflow
2025-02-13 21:13:24 +01:00

23 lines
485 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'
enable-cache: true
devbox-version: 0.13.4
- name: Run arbitrary commands
run: devbox run -- echo "done"
- name: Run a script called test
run: devbox run test