GameThing/.github/workflows/aspnetcore.yml

20 lines
386 B
YAML
Raw Normal View History

2019-10-05 17:22:50 +00:00
name: ASP.NET Core CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
2019-10-05 17:28:18 +00:00
dotnet-version: 3.0.100-preview8-013656
2019-10-05 17:22:50 +00:00
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Run tests
run: dotnet test src/GameTest