roulette/.github/workflows/dotnet.yml

26 lines
463 B
YAML
Raw Normal View History

2021-04-24 22:36:28 +03:00
name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
2022-01-12 19:19:36 +03:00
dotnet-version: 6.0.x
2021-04-24 22:36:28 +03:00
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal