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.
1 parent b81a754 commit ee138ecCopy full SHA for ee138ec
1 file changed
.github/workflows/ci.yml
@@ -5,10 +5,10 @@ on:
5
branches:
6
- main
7
paths-ignore:
8
- - 'README.md'
9
- - 'CODE_OF_CONDUCT.md'
10
- - '.editorconfig'
11
- - '.spi.yml'
+ - "README.md"
+ - "CODE_OF_CONDUCT.md"
+ - ".editorconfig"
+ - ".spi.yml"
12
pull_request:
13
14
@@ -40,14 +40,20 @@ jobs:
40
41
linux_test:
42
name: Test Linux
43
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
44
+ continue-on-error: ${{ matrix.experimental }}
45
timeout-minutes: 30
46
strategy:
47
+ fail-fast: false
48
matrix:
49
swift-version:
50
- 6.1
51
- 6.2
52
- latest
53
+ experimental: [false]
54
+ include:
55
+ - swift-version: latest
56
+ experimental: true
57
steps:
58
- name: Checkout
59
uses: actions/checkout@v4
0 commit comments