28 lines
600 B
YAML
28 lines
600 B
YAML
|
name: ci
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
dotnet-version: [ '3.1.x' ]
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
|
||
|
uses: actions/setup-dotnet@v2.1.0
|
||
|
with:
|
||
|
dotnet-version: ${{ matrix.dotnet-version }}
|
||
|
|
||
|
- name: Install Dependencies
|
||
|
run: dotnet restore
|
||
|
|
||
|
- name: Build
|
||
|
run: dotnet build --configuration Release --no-restore
|
||
|
# - name: Test
|
||
|
# run: dotnet test --no-restore --verbosity normal
|