Skip to content

Commit dde9586

Browse files
committed
Issue 81 add running of tests to the build pipeline
2 parents 0b1812c + 09075b8 commit dde9586

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@ on:
44
pull_request:
55
paths:
66
- '**.swift'
7+
workflow_dispatch:
78

89
jobs:
910
build:
1011
runs-on: macos-latest
1112
steps:
13+
- uses: maxim-lobanov/setup-xcode@v1
14+
with:
15+
xcode-version: '16.2.0' # Specify the desired Xcode version
16+
1217
- uses: actions/checkout@v4
1318

1419
- name: 🔨 Build
1520
run: |
16-
sudo xcode-select -s /Applications/Xcode_15.4.app/
17-
swift build
21+
swift build
22+
swift test

0 commit comments

Comments
 (0)