File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 24
24
os="${{ contains(github.event.pull_request.labels.*.name, 'ci/test') && 'ubuntu-latest macos-latest windows-latest' || 'ubuntu-latest' }}"
25
25
echo "matrix={\"os\": $(echo $os | jq -cR 'split(" ")')}" >> $GITHUB_OUTPUT
26
26
27
+ format :
28
+ runs-on : ubuntu-latest
29
+ steps :
30
+ - name : Checkout code
31
+ uses : actions/checkout@v4
32
+ - name : Setup dotnet SDK v6.0
33
+ uses : actions/setup-dotnet@v4
34
+ - name : Format Pulumi SDK
35
+ run : dotnet run format-sdk verify
36
+
27
37
build :
28
38
needs : setup_matrix
29
39
strategy :
41
51
dotnet-version : ${{ matrix.dotnet-version }}
42
52
- name : Install Pulumi CLI
43
53
uses : pulumi/actions@v5
44
- - name : Format Pulumi SDK
45
- run : dotnet run format-sdk verify
46
54
- name : Build Pulumi SDK
47
55
run : dotnet run build-sdk
48
56
- name : Test Pulumi SDK
You can’t perform that action at this time.
0 commit comments