Skip to content

Commit f16a041

Browse files
authored
Create swift.yml
1 parent c7c4ce0 commit f16a041

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/swift.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: SwiftPlot
2+
3+
on:
4+
push:
5+
branches: master
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
11+
runs-on: macOS-latest
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Install FreeType
16+
run: brew install freetype
17+
- name: Build
18+
run: swift build -v
19+
- name: Run tests
20+
run: swift test -v

0 commit comments

Comments
 (0)