-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (29 loc) · 887 Bytes
/
Teststatements.yml
File metadata and controls
35 lines (29 loc) · 887 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
33
34
35
name: TestStatemens CI0
on:
push:
paths:
- "TestStatements/**"
pull_request:
paths:
- "TestStatements/**"
jobs:
build-test:
runs-on: windows-latest
defaults:
run:
working-directory: TestStatements
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Remove private projects
run: |
- name: Restore
run: dotnet restore TestStatements.sln -p:TargetFramework=net8.0-windows
- name: Build
run: dotnet build TestStatements.sln --configuration Release --no-restore -p:TargetFramework=net8.0-windows
- name: Test
run: dotnet test TestStatements.sln --configuration Release --no-build --verbosity normal -p:TargetFramework=net8.0-windows