Skip to content

Commit efdf0bf

Browse files
committed
ci: added workflow build
1 parent 26be43e commit efdf0bf

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/swift.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Swift
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
name: Swift ${{ matrix.swift }}
8+
strategy:
9+
matrix:
10+
swift: ["5.10", "6.0", "6.1", "6.2"]
11+
runs-on: macos-latest
12+
steps:
13+
- uses: swift-actions/setup-swift@682457186b71c25a884c45c06f859febbe259240
14+
with:
15+
swift-version: ${{ matrix.swift }}
16+
- uses: actions/checkout@v5
17+
- name: Build
18+
run: swift build

0 commit comments

Comments
 (0)