try a more universal relabel? #3
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: Test with Devcontainer | |
| on: | |
| push: | |
| branches: [ "local/devcontainer" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run tests in devcontainer | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| runCmd: make test |