Skip to content

Commit

Permalink
refactor(repeater): add matrix os name to step titles
Browse files Browse the repository at this point in the history
  • Loading branch information
lsndr committed Aug 22, 2023
1 parent b7b1785 commit 8ac1154
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Packages (Fedora)
- name: Install Packages (${{ matrix.container }})
if: ${{ startsWith(matrix.container, 'fedora') }}
run: |
dnf install -y python gcc-c++
- name: Install Packages (Ubuntu)
- name: Install Packages (${{ matrix.container }})
if: startsWith(matrix.container, 'ubuntu')
run: |
apt-get update -yq \
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Docker (MacOS)
- name: Install Docker (${{ matrix.os }})
if: ${{ startsWith(matrix.os, 'macos') }}
run: |
brew install docker
Expand Down Expand Up @@ -161,12 +161,12 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Packages (Fedora)
- name: Install Packages (${{ matrix.container }})
if: ${{ startsWith(matrix.container, 'fedora') }}
run: |
dnf install -y python gcc-c++
- name: Install Packages (Ubuntu)
- name: Install Packages (${{ matrix.container }})
if: startsWith(matrix.container, 'ubuntu')
run: |
apt-get update -yq \
Expand Down

0 comments on commit 8ac1154

Please sign in to comment.