GLWidget/.github/workflows/dotnetcore.yml

18 lines
302 B
YAML
Raw Normal View History

2020-02-16 13:23:41 +01:00
name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
2020-02-16 14:47:16 +01:00
dotnet-version: 3.1.101
2020-02-16 13:23:41 +01:00
- name: Build with dotnet
run: dotnet build --configuration Release