Skip to content

Commit

Permalink
github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brase committed May 26, 2020
1 parent 4e56aee commit c746941
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: build

on: [push, pull_request]

jobs:
build:

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet: [3.1.201]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore tools
run: dotnet tool restore
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet fake build
# - name: Test
# run: dotnet test --no-restore --verbosity normal

0 comments on commit c746941

Please sign in to comment.