Skip to content

Commit fb0706d

Browse files
authored
Merge pull request praeclarum#871 from praeclarum/ghbuild
GitHub Build Script
2 parents 3314490 + ffef983 commit fb0706d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: macOS-10.14
9+
10+
steps:
11+
12+
- uses: actions/checkout@v1
13+
14+
- name: Build and Test
15+
run: make test
16+
17+
- name: Make nuget
18+
run: |
19+
make nuget
20+
mkdir PackageOut
21+
mv *.nupkg PackageOut

0 commit comments

Comments
 (0)