chore(deps): update docker #15
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: Test DevContainer | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| paths: | |
| - 'devenv/**' | |
| - '.devcontainer/**' | |
| - 'common/.devcontainer/**' | |
| - '.github/workflows/test-devcontainer.yml' | |
| - 'Justfile' | |
| env: | |
| REGISTRY: ghcr.io | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [debian, ubuntu] | |
| # TODO: c10s has PAM/sudo issues with devcontainer CLI's --userns=keep-id | |
| # include: | |
| # - os: c10s | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up runner | |
| uses: bootc-dev/actions/bootc-ubuntu-setup@main | |
| - name: Build devcontainer image | |
| run: just devenv-build-${{ matrix.os }} | |
| - name: Test devcontainer | |
| run: just devcontainer-test ${{ matrix.os }} |