-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 1.32 KB
/
continuous-integration.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
name: Continuous Integration
on:
[push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
- name: Build & Test
run: ./Build/build-and-test.ps1
shell: pwsh
- name: Upoload Coverage Badge
if: github.event_name != 'pull_request' && matrix.os == 'windows-latest'
uses: exuanbo/actions-deploy-gist@v1
with:
token: ${{ secrets.CODE_COVERAGE_AUTH_TOKEN }}
gist_id: 527882e89a938dc78f61a08c300edec4
gist_description: "code-coverage-${{ github.ref_name }}"
gist_file_name: fmsync-code-coverage-${{ github.ref_name }}.svg
file_path: tests/TestResults/badge_shieldsio_linecoverage_green.svg
- name: Set SemVer Tag
if: (github.ref_name == 'main' || github.event_name == 'pull_request') && matrix.os == 'windows-latest'
run: ./Build/set-semver-tag.ps1
shell: pwsh
- name: Build Windows Installer
if: (github.ref_name == 'main' || github.event_name == 'pull_request') && matrix.os == 'windows-latest'
run: ./Build/build-windows-installer.ps1
shell: pwsh