-
-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (59 loc) · 2.25 KB
/
main.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: Release
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: 'csharp'
- name: Setup .NET 3.1
uses: actions/setup-dotnet@v4
with:
dotnet-version: 3.1.x
- name: Setup .NET 5.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 5.x
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.x
- name: Setup .NET 7.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.x
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test v8
run: dotnet test ./tests/GeneratedEntityFramework.Tests.v8/GeneratedEntityFramework.Tests.v8.csproj --configuration Release --no-build --verbosity normal --framework net8.0
- name: Test v7
run: dotnet test ./tests/GeneratedEntityFramework.Tests.v7/GeneratedEntityFramework.Tests.v7.csproj --configuration Release --no-build --verbosity normal --framework net7.0
- name: Test v6
run: dotnet test ./tests/GeneratedEntityFramework.Tests.v6/GeneratedEntityFramework.Tests.v6.csproj --configuration Release --no-build --verbosity normal --framework net6.0
- name: Test v5
run: dotnet test ./tests/GeneratedEntityFramework.Tests.v5/GeneratedEntityFramework.Tests.v5.csproj --configuration Release --no-build --verbosity normal --framework net5.0
- name: Test v3
run: dotnet test ./tests/GeneratedEntityFramework.Tests.v3/GeneratedEntityFramework.Tests.v3.csproj --configuration Release --no-build --verbosity normal --framework netcoreapp3.1
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3