-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (30 loc) · 873 Bytes
/
Copy pathtest.yml
File metadata and controls
38 lines (30 loc) · 873 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
36
37
38
on: push
jobs:
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v6
with:
dotnet-version: |
10.0.x
- name: Build
run: dotnet build ./src/AutoTests.Framework.slnx
- name: Test
run: dotnet test --no-build --no-restore --solution ./src/AutoTests.Framework.slnx --no-progress
format-verify:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v6
with:
dotnet-version: 10.0.x
- name: Format
run: dotnet format --verify-no-changes ./src/AutoTests.Framework.slnx