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