diff --git a/.gitea/workflows/trigger_devbox.yaml b/.gitea/workflows/trigger_devbox.yaml new file mode 100644 index 0000000..7ec010e --- /dev/null +++ b/.gitea/workflows/trigger_devbox.yaml @@ -0,0 +1,19 @@ +name: Testing with devbox + +on: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install devbox + uses: jetify-com/devbox-install-action@v0.11.0 + + - name: Run arbitrary commands + run: devbox run -- echo "done!" + + - name: Run a script called test + run: devbox run test \ No newline at end of file