File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+ on :
3
+ push :
4
+ branches :
5
+ - main
6
+ pull_request :
7
+ env :
8
+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE : true
9
+ DOTNET_CLI_TELEMETRY_OPTOUT : true
10
+ jobs :
11
+ format :
12
+ runs-on : ubuntu-latest
13
+ - uses : actions/checkout@v3
14
+ - uses : actions/setup-dotnet@v3
15
+ with :
16
+ dotnet-version : 6.0.x
17
+ - run : dotnet format --verify-no-changes
18
+ - run : dotnet format --verify-no-changes
19
+ working-directory : snapshots/input/syntax
20
+ test :
21
+ runs-on : ${{ matrix.os }}
22
+ strategy :
23
+ fail-fast : false
24
+ matrix :
25
+ os : [ubuntu-latest, windows-latest, macos-latest]
26
+ name : Test
27
+ steps :
28
+ - uses : actions/checkout@v3
29
+ - uses : actions/setup-dotnet@v3
30
+ with :
31
+ dotnet-version : 6.0.x
32
+ - run : dotnet test
33
+
You can’t perform that action at this time.
0 commit comments