We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5ca514 commit 1144552Copy full SHA for 1144552
1 file changed
.github/workflows/ci.yml
@@ -583,3 +583,24 @@ jobs:
583
with:
584
version: v0.11.2
585
cache-binary: ${{ matrix.cache }}
586
+
587
+ windows-error:
588
+ runs-on: windows-latest
589
+ steps:
590
+ -
591
+ name: Checkout
592
+ uses: actions/checkout@v4
593
594
+ name: Set up Docker Buildx
595
+ id: buildx
596
+ continue-on-error: true
597
+ uses: ./
598
599
+ name: Check
600
+ run: |
601
+ echo "${{ toJson(steps.buildx) }}"
602
+ if [ "${{ steps.buildx.outcome }}" != "failure" ] || [ "${{ steps.buildx.conclusion }}" != "success" ]; then
603
+ echo "::error::Should have failed"
604
+ exit 1
605
+ fi
606
+ shell: bash
0 commit comments