Skip to content

Commit

Permalink
Merge pull request #871 from praeclarum/ghbuild
Browse files Browse the repository at this point in the history
GitHub Build Script
  • Loading branch information
praeclarum authored Sep 20, 2019
2 parents 3314490 + ffef983 commit fb0706d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on: [push, pull_request]

jobs:
build:

runs-on: macOS-10.14

steps:

- uses: actions/checkout@v1

- name: Build and Test
run: make test

- name: Make nuget
run: |
make nuget
mkdir PackageOut
mv *.nupkg PackageOut

0 comments on commit fb0706d

Please sign in to comment.