Merge pull request #411 from crazy-max/test-windows

ci: test container builder on windows
This commit is contained in:
CrazyMax 2025-03-12 15:56:50 +01:00 committed by GitHub
commit afeb29a6e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -581,3 +581,24 @@ jobs:
with:
version: v0.11.2
cache-binary: ${{ matrix.cache }}
windows-error:
runs-on: windows-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Docker Buildx
id: buildx
continue-on-error: true
uses: ./
-
name: Check
run: |
echo "${{ toJson(steps.buildx) }}"
if [ "${{ steps.buildx.outcome }}" != "failure" ] || [ "${{ steps.buildx.conclusion }}" != "success" ]; then
echo "::error::Should have failed"
exit 1
fi
shell: bash