22 lines
477 B
YAML
22 lines
477 B
YAML
name: Testing with devbox
|
|
on:
|
|
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 |