mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-26 14:38:34 +01:00
Create dotnetcore.yml
This commit is contained in:
parent
14bce69521
commit
72dfc9170b
1 changed files with 13 additions and 0 deletions
13
.github/workflows/dotnetcore.yml
vendored
Normal file
13
.github/workflows/dotnetcore.yml
vendored
Normal 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
|
Loading…
Reference in a new issue