-
Notifications
You must be signed in to change notification settings - Fork 19
46 lines (39 loc) · 1 KB
/
ci-test.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
name: TextUtility CI Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci:
name: Build and Test
strategy:
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
env:
DOTNET_NOLOGO: true
DOTNET_GENERATE_ASPNET_CERTIFICATE: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dotnet
uses: actions/setup-dotnet@v4
with:
cache: true
cache-dependency-path: '**/*.csproj'
- name: Install PSResources
run: ./build.ps1 -Bootstrap
shell: pwsh
- name: Build
run: ./build.ps1 -Configuration Release
shell: pwsh
- name: Test
run: ./build.ps1 -Test -NoBuild
shell: pwsh
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: TextUtility-tests-${{ matrix.os }}
path: testResults.xml