summaryrefslogtreecommitdiff
path: root/.github/workflows/dotnet.yml
blob: a3f44a4d8b1e7c704b692d5c88b0b10b645b64fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: CI

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: Install dotnet core
      run: |
        wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb
        sudo dpkg -i packages-microsoft-prod.deb
        sudo apt-get update
        sudo apt-get install -y dotnet-sdk-3.0
    - name: Run tests
      run: dotnet test