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 b31459d commit 91e6813Copy full SHA for 91e6813
.github/workflows/test-docs-scripts.yml
@@ -223,9 +223,16 @@ jobs:
223
224
test-update-ocaml-node-script:
225
name: Test Update OCaml Node Script
226
- runs-on: [macos-latest, ubuntu-latest]
+ runs-on: ${{ matrix.os }}
227
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'test-doc-scripts')
228
+ strategy:
229
+ matrix:
230
+ os: [macos-latest, ubuntu-latest]
231
+
232
steps:
233
+ - name: Checkout repository
234
+ uses: actions/checkout@v4
235
236
- name: Test update-ocaml-node script reproducibility
237
run: |
238
# Save the current script to use with the old commit state
0 commit comments