Skip to content

Commit

Permalink
Set-up CI using GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JSkimming committed Sep 2, 2019
1 parent b136131 commit a20331a
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on:
push:
branches:
- master

pull_request:
branches:
- master

jobs:

build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-16.04
- ubuntu-18.04
config:
- Debug
- Release
dotnet:
- "2.1.801"
- "2.2.401"
name: ${{ matrix.os }} ${{ matrix.dotnet }} ${{ matrix.config }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1.0.2
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Test Coverage
run: ./coverage.sh netcoreapp2.1 ${{ matrix.config }}

0 comments on commit a20331a

Please sign in to comment.