-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 875 Bytes
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 5.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Setup .NET 3.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.0.x
- name: Setup .NET 6.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build 6.0
run: dotnet build -f net6.0-windows10.0.19041 --no-restore
- name: Build 5.0
run: dotnet build -f net5.0-windows10.0.19041 --no-restore
- name: Build 3.x
run: dotnet build -f netcoreapp3.1 --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal