Skip to content

Commit 53cef62

Browse files
committed
run full cleanup on matrix
1 parent 5220148 commit 53cef62

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/dotnet.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,12 @@ jobs:
228228
229229
cleanup-code:
230230
timeout-minutes: 30
231-
runs-on: ubuntu-latest
231+
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
232237
steps:
233238
- name: Git checkout
234239
uses: actions/checkout@v3
@@ -263,7 +268,7 @@ jobs:
263268
Write-Output "No changed files in pull request."
264269
}
265270
- name: CleanupCode (on branch)
266-
if: github.event_name == 'push'
271+
#if: github.event_name == 'push'
267272
shell: pwsh
268273
run: |
269274
Write-Output "Running code cleanup on all files in branch."

0 commit comments

Comments
 (0)