-
-
Notifications
You must be signed in to change notification settings - Fork 100
28 lines (21 loc) · 588 Bytes
/
test.yml
File metadata and controls
28 lines (21 loc) · 588 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
name: Test Solution
on:
push:
#branches: [ master ]
pull_request:
#branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore Test/Eliot.UELib.Test.csproj
- name: Build
run: dotnet build Test/Eliot.UELib.Test.csproj --no-restore
- name: Test
run: dotnet test Test/Eliot.UELib.Test.csproj --no-build --verbosity normal