-
Notifications
You must be signed in to change notification settings - Fork 4
92 lines (85 loc) · 2.62 KB
/
build.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Build
on:
push:
branches: [ main, funcky3 ]
pull_request:
branches: [ main, funcky3 ]
env:
DOTNET_NOLOGO: 1
jobs:
build:
name: Build and Test
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
systemLinqAsync: [ '5.0.0', '6.0.1' ]
env:
SystemLinqAsyncVersion: ${{matrix.systemLinqAsync}}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
name: Install Current .NET SDK
- uses: actions/setup-dotnet@v3
name: 'Install .NET SDK 3.1'
with:
dotnet-version: '3.1.x'
- uses: actions/setup-dotnet@v3
name: 'Install .NET SDK 5.0'
with:
dotnet-version: '5.0.x'
- uses: actions/setup-dotnet@v3
name: 'Install .NET SDK 7.0'
with:
dotnet-version: '7.0.x'
- uses: actions/setup-dotnet@v3
name: 'Install .NET SDK 6.0'
with:
dotnet-version: '6.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore /p:TreatWarningsAsErrors=true
- name: Run Tests
run: dotnet test --configuration Release --no-build
style:
name: Check Formatting and Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
name: Install Current .NET SDK
- name: Restore dependencies
run: dotnet restore
# We need to run a build first so that the attribute from our source generator is available.
# Otherwise we get warnings about unused usings.
- name: Build
run: dotnet build Funcky.SourceGenerator --no-restore && dotnet build Funcky.FsCheck --no-restore
- run: dotnet format style --verify-no-changes --no-restore
name: Check Style
- run: dotnet format whitespace --verify-no-changes --no-restore
name: Check Whitespace
trimming-test:
name: Trimming Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
name: Install Current .NET SDK
- name: Run trimming test
run: dotnet publish -c Release Funcky.TrimmingTest -r linux-x64 --self-contained /p:TreatWarningsAsErrors=true
nupkg:
name: Generate NuGet Packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
name: Install Current .NET SDK
- name: Generate NuGet Packages
run: dotnet pack --output nupkg
- uses: actions/upload-artifact@v3
if: success() && github.ref == 'refs/heads/main'
with:
name: nupkg
path: nupkg/*
retention-days: 1