-
-
Notifications
You must be signed in to change notification settings - Fork 387
32 lines (27 loc) · 740 Bytes
/
aot-compatibility.yml
File metadata and controls
32 lines (27 loc) · 740 Bytes
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
name: AOT Compatibility
on:
push:
branches: [ 'master' ]
paths-ignore:
- '**.md'
pull_request:
branches: [ 'master' ]
paths-ignore:
- '**.md'
jobs:
aot-test:
strategy:
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails
matrix:
os: [ windows-latest ]
mimekitlite: [ true ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # fetching all
- name: Setup dotnet
uses: actions/setup-dotnet@v4
- name: publish AOT testApp, assert static analysis warning count, and run the app
shell: pwsh
run: .\scripts\test-aot-compatibility.ps1 ${{ matrix.mimekitlite }}