We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5220148 commit 53cef62Copy full SHA for 53cef62
.github/workflows/dotnet.yml
@@ -228,7 +228,12 @@ jobs:
228
229
cleanup-code:
230
timeout-minutes: 30
231
- runs-on: ubuntu-latest
+ strategy:
232
+ fail-fast: false
233
+ matrix:
234
+ os: [ubuntu-latest, windows-latest, macos-latest]
235
+ runs-on: ${{ matrix.os }}
236
+ #runs-on: ubuntu-latest
237
steps:
238
- name: Git checkout
239
uses: actions/checkout@v3
@@ -263,7 +268,7 @@ jobs:
263
268
Write-Output "No changed files in pull request."
264
269
}
265
270
- name: CleanupCode (on branch)
266
- if: github.event_name == 'push'
271
+ #if: github.event_name == 'push'
267
272
shell: pwsh
273
run: |
274
Write-Output "Running code cleanup on all files in branch."
0 commit comments