X10D/.github/workflows/dotnetcore.yml

26 lines
494 B
YAML
Raw Normal View History

2020-04-18 13:48:32 +00:00
name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2022-02-14 12:10:59 +00:00
- name: Setup .NET
2020-04-18 13:48:32 +00:00
uses: actions/setup-dotnet@v1
with:
2022-02-14 12:10:59 +00:00
dotnet-version: 6.0.x
2020-04-18 13:48:32 +00:00
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal