We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5d077f commit 79aa03eCopy full SHA for 79aa03e
1 file changed
.github/workflows/tests.yml
@@ -5,7 +5,7 @@ on:
5
6
jobs:
7
test:
8
- runs-on: ubuntu-latest
+ runs-on: macos-latest
9
steps:
10
- uses: actions/checkout@v4
11
- uses: actions/setup-node@v4
@@ -15,10 +15,10 @@ jobs:
15
16
- name: Install Swift
17
run: |
18
- curl -O https://download.swift.org/swiftly/linux/swiftly-$(uname -m).tar.gz && \
19
- tar zxf swiftly-$(uname -m).tar.gz && \
20
- ./swiftly init --quiet-shell-followup && \
21
- . "${SWIFTLY_HOME_DIR:-$HOME/.local/share/swiftly}/env.sh" && \
+ curl -O https://download.swift.org/swiftly/darwin/swiftly.pkg && \
+ installer -pkg swiftly.pkg -target CurrentUserHomeDirectory && \
+ ~/.swiftly/bin/swiftly init --quiet-shell-followup && \
+ . "${SWIFTLY_HOME_DIR:-$HOME/.swiftly}/env.sh" && \
22
hash -r
23
24
- name: Configure Swift
0 commit comments