Skip to content

Commit

Permalink
using different images
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessandroMinoccheri committed Jan 4, 2021
1 parent 756463d commit 149d4f7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Empty file modified .circleci/config.yml
100755 → 100644
Empty file.
11 changes: 8 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@ on:

jobs:
build:

strategy:
matrix:
container: [ "php74", "php80" ]

runs-on: ubuntu-latest
container: pugx/poser:php80
container: pugx/poser:${{ matrix.container }}
steps:
- uses: actions/checkout@v2

Expand All @@ -19,9 +24,9 @@ jobs:
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
key: ${{ runner.os }}-php-${{ matrix.container }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
${{ runner.os }}-php-${{ matrix.container }}
- name: Install dependencies
run: composer install -n --no-progress --no-suggest
Expand Down

0 comments on commit 149d4f7

Please sign in to comment.