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 cf7807a commit c623b33Copy full SHA for c623b33
.github/workflows/determine-rid.yml
@@ -1,5 +1,5 @@
1
name: determine-rid Test
2
-on: [push, workflow_dispatch]
+on: [workflow_dispatch]
3
jobs:
4
test-unix:
5
strategy:
.github/workflows/matrix-optional.yml
@@ -0,0 +1,19 @@
+name: Matrix Optional Test
+on: [push, workflow_dispatch]
+jobs:
+ test:
+ strategy:
6
+ fail-fast: false
7
+ matrix:
8
+ include:
9
+ - name: Not specified
10
+ - name: Specified
11
+ skip-thing: true
12
+ name: Test ${{matrix.name}} (${{matrix.skip-thing}})
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Always ran
16
+ run: echo "Hello, world!"
17
+ - name: Sometimes ran
18
+ if: matrix.skip-thing != true
19
+ run: echo "Sometimes I'm skipped!"
0 commit comments