ForgeCore/.github/workflows/dotnetcore.yml
2020-05-13 18:52:27 -07:00

25 lines
No EOL
548 B
YAML

name: .NET Core
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Setup .NET Core
uses: actions/setup-dotnet@v1.4.0
with:
dotnet-version: 3.1.100
if: matrix.os == 'macOS-latest' || matrix.os == 'ubuntu-latest'
- name: Restore Dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release