We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 217500c commit b0614b1Copy full SHA for b0614b1
1 file changed
.github/workflows/install_requirements.yml
@@ -19,6 +19,10 @@
19
container:
20
image: ${{ matrix.container_image }}
21
steps:
22
- - name: Install sudo
23
- run: echo "Hello from the container"
+ - name: Hello from fedora
+ if: startsWith(matrix.container_image, 'fedora') == true
24
+ run: echo "Hello from fedora"
25
+ - name: Hello from ubuntu
26
+ if: startsWith(matrix.container_image, 'ubuntu') == true
27
+ run: echo "Hello from ubuntu"
28
0 commit comments