Skip to content

Commit fc6ff07

Browse files
mergesortclaude
andcommitted
Adding CI support for Swift 5.10
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 5f4017d commit fc6ff07

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/swift.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,24 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v1
2525
- run: ASAN_OPTIONS=detect_leaks=0 swift test --sanitize=address
26+
focal-5-10:
27+
container:
28+
image: swift:5.10-focal
29+
runs-on: ubuntu-latest
30+
steps:
31+
- uses: actions/checkout@v1
32+
- run: swift test
33+
thread-5-10:
34+
container:
35+
image: swift:5.10-focal
36+
runs-on: ubuntu-latest
37+
steps:
38+
- uses: actions/checkout@v1
39+
- run: swift test --sanitize=thread
40+
address-5-10:
41+
container:
42+
image: swift:5.10-focal
43+
runs-on: ubuntu-latest
44+
steps:
45+
- uses: actions/checkout@v1
46+
- run: ASAN_OPTIONS=detect_leaks=0 swift test --sanitize=address

0 commit comments

Comments
 (0)