Skip to content

Commit 4dd8f44

Browse files
authored
create workflow (#16)
* create workflow
1 parent 7d742ef commit 4dd8f44

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build_package.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: build_package
2+
3+
run-name: build
4+
5+
on: [push]
6+
7+
jobs:
8+
build:
9+
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
10+
strategy:
11+
matrix:
12+
os: [macos-latest]
13+
runs-on: ${{ matrix.os }}
14+
steps:
15+
- uses: swift-actions/setup-swift@65540b95f51493d65f5e59e97dcef9629ddf11bf
16+
- uses: actions/checkout@v4
17+
- name: Build
18+
run: swift build
19+
- name: Run tests
20+
run: swift test

0 commit comments

Comments
 (0)