Run dataset tests on Woodpecker with full data access #126
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: Check Devcontainer | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - series/* | |
| - future/* | |
| pull_request: | |
| concurrency: | |
| group: devc-${{github.ref}} | |
| cancel-in-progress: true | |
| jobs: | |
| check-devcontainer: | |
| name: Check that dev container works | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📥 Check out source code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Pre-build dev container image | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| imageName: ghcr.io/lenskit/lkpy-devcontainer | |
| push: never | |
| - name: Run tests in dev container | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| push: never | |
| runCmd: mise run test | |
| - name: Lint source code in dev container | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| push: never | |
| runCmd: mise run lint |