actions: tweak env check #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Testing with devbox | |
| on: | |
| push: | |
| branches: | |
| - 157-offline-dev | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Copy .env file | |
| run: cp .env.example .env | |
| - name: Install devbox | |
| uses: jetify-com/devbox-install-action@v0.12.0 | |
| with: | |
| enable-cache: true | |
| - name: Check devbox env variables | |
| run: env | |
| - name: Run a script called test | |
| run: devbox run setup | |
| - name: Run arbitrary commands | |
| run: devbox run -- echo "done!" |