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 439900c commit af19407Copy full SHA for af19407
.github/workflows/test-docs-scripts.yml
@@ -223,9 +223,18 @@ 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
+ with:
236
+ fetch-depth: 0 # Fetch all history
237
238
- name: Test update-ocaml-node script reproducibility
239
run: |
240
# Save the current script to use with the old commit state
0 commit comments