-
Notifications
You must be signed in to change notification settings - Fork 4
56 lines (47 loc) · 1.26 KB
/
verify.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Verify
on:
pull_request:
branches:
- master
push:
branches:
- master
schedule:
- cron: "55 4 * * *"
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
DOTNET_VERSION: 7.0.x
jobs:
build:
name: Build for ${{ matrix.dotnet.framework }}
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: # https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/releases-index.json
- framework: net6.0
- framework: net7.0
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- run: dotnet build --framework ${{ matrix.dotnet.framework }} src/Verse.sln
check:
name: Check style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- run: dotnet format --no-restore --verify-no-changes src/Verse.sln
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- run: dotnet test --framework net7.0 src/Verse.Test