Skip to content

Commit 5db3f6f

Browse files
Allow Windows CI to fail without blocking release
Windows has a flaky bookmark button test tracked in #6. This allows releases to proceed while we debug. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 1f1c56a commit 5db3f6f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ concurrency:
1414
jobs:
1515
test:
1616
strategy:
17+
fail-fast: false
1718
matrix:
1819
os: [macos-latest, ubuntu-latest, windows-latest]
1920
runs-on: ${{ matrix.os }}
2021
timeout-minutes: 15
22+
# TODO: Remove continue-on-error once #6 (flaky Windows test) is resolved
23+
continue-on-error: ${{ matrix.os == 'windows-latest' }}
2124

2225
steps:
2326
- name: Checkout

0 commit comments

Comments
 (0)