Skip to content

Commit b0614b1

Browse files
authored
Update install_requirements.yml
1 parent 217500c commit b0614b1

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/install_requirements.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
container:
2020
image: ${{ matrix.container_image }}
2121
steps:
22-
- name: Install sudo
23-
run: echo "Hello from the container"
22+
- name: Hello from fedora
23+
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"
2428

0 commit comments

Comments
 (0)