forked from dotnet/csharpstandard
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 773 Bytes
/
Copy pathtools-tests.yaml
File metadata and controls
36 lines (31 loc) · 773 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
name: Tools tests
# Triggers the workflow on pull request events that update the branch
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'tools/**.cs'
- 'tools/**.csproj'
- 'tools/**.sln'
workflow_dispatch:
inputs:
reason:
description: 'The reason for running the workflow'
required: true
default: 'Manual run'
jobs:
run-unit-tests:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
steps:
- name: Check out our repo
uses: actions/checkout@v6.0.3
- name: Setup .NET 10.0
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Run all tests
run: |
cd tools
dotnet test --filter Name!~ExampleTests