-
Notifications
You must be signed in to change notification settings - Fork 291
47 lines (38 loc) · 1.13 KB
/
sanity.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
# Syntax: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
# .NET CLI: https://docs.microsoft.com/dotnet/core/tools/
# Description: The purpose of this workflow is to verify that every solution in the repo successfully compiles.
name: Sanity Build
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
sanity-build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
solution: [
./NETCORE/ApplicationInsights.AspNetCore.sln,
./Everything.sln,
./ProjectsForSigning.sln,
./examples/Examples.sln,
./LOGGING/Logging.sln,
./BASE/Microsoft.ApplicationInsights.sln,
./WEB/Src/Microsoft.ApplicationInsights.Web.sln]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/[email protected]
with:
dotnet-version: |
3.1.x
6.0.x
7.0.x
8.0.x
- name: Restore
run: dotnet restore ${{ matrix.solution }}
- name: Build
run: dotnet build ${{ matrix.solution }}