1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-25 22:21:42 +02:00

Create dotnetcore.yml

This commit is contained in:
Ellpeck 2020-01-28 16:03:11 +01:00 committed by GitHub
parent 14bce69521
commit 72dfc9170b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
.github/workflows/dotnetcore.yml vendored Normal file
View file

@ -0,0 +1,13 @@
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:
dotnet-version: 2.2.108
- name: Build with dotnet
run: dotnet build --configuration Release