diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb674f15..827ac07c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,3 +46,10 @@ jobs: run: uv sync --locked - name: Test with Nox run: uv run nox -s ${{ matrix.nox-session }} + container: + runs-on: ubuntu-24.04 + steps: + - name: Build Container Image + uses: docker/build-push-action@v6 + with: + push: false diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml deleted file mode 100644 index 74068069..00000000 --- a/.github/workflows/container.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: container - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-24.04 - steps: - - uses: actions/checkout@v4 - - name: Build Container Image - uses: docker/build-push-action@v6 - with: - push: false