Skip to content

Commit

Permalink
👷 rename matrix.version to matrix.qt-version for clearer code
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierLDff committed Jul 15, 2021
1 parent 44c0e79 commit 66b2d73
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, macOS-latest, ubuntu-latest]
version: ['5.15.2', '6.1.0']
qt-version: ['5.15.2', '6.1.0']
steps:
- uses: actions/checkout@v2

Expand All @@ -18,14 +18,14 @@ jobs:
id: cache-qt
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/Qt-${{ runner.os }}-${{ matrix.version }}
key: ${{ runner.os }}-QtCache-${{ matrix.version }}
path: ${{ github.workspace }}/Qt-${{ runner.os }}-${{ matrix.qt-version }}
key: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}

- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: ${{ matrix.version }}
dir: ${{ github.workspace }}/Qt-${{ runner.os }}-${{ matrix.version }}
version: ${{ matrix.qt-version }}
dir: ${{ github.workspace }}/Qt-${{ runner.os }}-${{ matrix.qt-version }}
cached: ${{ steps.cache-qt.outputs.cache-hit }}

- name: Configure QOlm
Expand Down

0 comments on commit 66b2d73

Please sign in to comment.