Skip to content

Commit e980aa1

Browse files
committed
Set github actions version
1 parent db365f3 commit e980aa1

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/swift.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,18 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: macos-11
11+
name: Swift on ${{ matrix.os }}
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest, macos-latest]
16+
swift: ["5.7"]
1217
steps:
18+
- uses: swift-actions/setup-swift@v1
19+
with:
20+
swift-version: ${{ matrix.swift }}
21+
- name: Get swift version
22+
run: swift --version
1323
- name: Cache Mint
1424
uses: actions/cache@v2
1525
with:

0 commit comments

Comments
 (0)