Skip to content

Commit

Permalink
Use consistent OS version between storing cache and using cache.
Browse files Browse the repository at this point in the history
  • Loading branch information
Danack committed Jul 6, 2024
1 parent 8cb70c6 commit c86d6a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:
jobs:
test_basic:
name: basic PHP ${{ matrix.php }} - I ${{ matrix.imagemagick }}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
Expand All @@ -21,6 +20,7 @@ jobs:
7.1.0-13,
6.8.7-0,
]
runs-on: ${{ matrix.os }}

steps:
- name: Checkout code
Expand Down Expand Up @@ -76,11 +76,10 @@ jobs:
test_all:
name: Full PHP ${{ matrix.php }} - I ${{ matrix.imagemagick }}
needs: test_basic
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
os: [ ubuntu-latest ]
php: [5.4, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0, 5.6, 5.5]
imagemagick: [
7.1.0-13,
Expand Down Expand Up @@ -124,6 +123,7 @@ jobs:
imagemagick: git7
- php: 5.5
imagemagick: git7
runs-on: ${{ matrix.os }}

steps:
- name: Checkout code
Expand Down

0 comments on commit c86d6a2

Please sign in to comment.