-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (62 loc) · 1.88 KB
/
Copy pathtest-dotnet-format.yml
File metadata and controls
67 lines (62 loc) · 1.88 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: "🧪 Test dotnet format"
on:
workflow_dispatch:
pull_request:
paths:
- "__tests__/dotnet/**"
branches:
- main
jobs:
dotnet-format:
name: "🧪 Test dotnet format"
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup-dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
- name: dotnet-format
id: dotnet-format
uses: ./
with:
authToken: ${{ secrets.GITHUB_TOKEN }}
workspace: ${{ github.workspace }}/__tests__/dotnet/Console
logLevel: "detailed"
projectFileName: "Console.sln"
jscpdCheck: true
jscpdCheckAsError: true
- name: log-output
env:
HAS_CHANGES: ${{ steps.dotnet-format.outputs.hasChanges }}
HAS_DUPLICATES: ${{ steps.dotnet-format.outputs.hasDuplicates }}
run: |
echo "hasChanges=$HAS_CHANGES"
echo "hasDuplicates=$HAS_DUPLICATES"
dotnet-format-config:
name: "🧪 Test dotnet-format with config"
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup-dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
- name: dotnet-format
id: dotnet-format
uses: ./
with:
authToken: ${{ secrets.GITHUB_TOKEN }}
workspace: ${{ github.workspace }}/__tests__/dotnet/ConfigConsoleApp
projectFileName: "ConfigConsoleApp.sln"
jscpdCheck: true
jscpdCheckAsError: true
- name: log-output
env:
HAS_CHANGES: ${{ steps.dotnet-format.outputs.hasChanges }}
HAS_DUPLICATES: ${{ steps.dotnet-format.outputs.hasDuplicates }}
run: |
echo "hasChanges=$HAS_CHANGES"
echo "hasDuplicates=$HAS_DUPLICATES"