Skip to content

Commit 89e4190

Browse files
authored
Create pull-request.yml
1 parent 7df5daf commit 89e4190

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/pull-request.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Pull Request
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
11+
runs-on: macos-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Build
16+
run: swift build -v
17+
- name: Run tests
18+
run: swift test -v

0 commit comments

Comments
 (0)