Skip to content

Commit b82d2a8

Browse files
committed
Add GitHub Actions
1 parent 40a0e6d commit b82d2a8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: macos-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: swift-actions/setup-swift@v2
16+
with:
17+
swift-version: "5.10"
18+
- name: Build
19+
run: swift build -v

0 commit comments

Comments
 (0)