-
Notifications
You must be signed in to change notification settings - Fork 11
59 lines (55 loc) · 1.38 KB
/
ci-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
name: Build
on:
push:
branches:
- dev
- main
- prerelease
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
pull_request:
branches:
- dev
- main
- prerelease
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
jobs:
build-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
sln:
- Spriggit.sln
- Spriggit.Linux.sln
exclude:
- os: ubuntu-latest
sln: Spriggit.sln
- os: ubuntu-latest
sln: Spriggit.Tests.Windows.sln
- os: macos-latest
sln: Spriggit.sln
- os: macos-latest
sln: Spriggit.Tests.Windows.sln
- os: windows-latest
sln: Spriggit.Linux.sln
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.*
- name: Install dependencies
run: |
dotnet clean ${{ matrix.sln }} -c Release && dotnet nuget locals all --clear
dotnet restore ${{ matrix.sln }}
- name: Build
run: dotnet build ${{ matrix.sln }} -c Release --no-restore /p:GeneratePackageOnBuild=false
- name: Test
run: dotnet test ${{ matrix.sln }} -c Release --no-build