-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (48 loc) · 1.33 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
name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Setup Task
uses: arduino/setup-task@v2
with:
version: 3.x
- name: Setup coreutils
uses: baptiste0928/cargo-install@v3
with:
crate: coreutils
- name: Run unit tests and produce a coverage report
run: task report
env:
CONFIGURATION: ${{ matrix.configuration }}
- name: Publish a self-container version of the app and create the installer
run: task installer
env:
CONFIGURATION: ${{ matrix.configuration }}
- name: Upload coverage
if: ${{ matrix.configuration == 'Release' }}
uses: codecov/codecov-action@v5
with:
directory: ./.coverage
files: Cobertura.xml
fail_ci_if_error: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: TotalMixVC ${{ matrix.configuration }} Setup
path: artifacts/*.exe
if-no-files-found: error