1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-10-01 10:31:06 +02:00
MLEM/.github/workflows/dotnetcore.yml

14 lines
308 B
YAML
Raw Normal View History

2020-01-28 16:03:11 +01:00
name: .NET Core
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
2020-01-28 16:06:56 +01:00
dotnet-version: 3.0
2020-01-28 16:03:11 +01:00
- name: Build with dotnet
run: dotnet build --configuration Release