Skip to content

Commit

Permalink
Test against PHP 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wandersonwhcr committed Jan 14, 2022
1 parent f7a4c40 commit 7464405
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -8,18 +8,35 @@ on:

jobs:
test-71:
name: PHP 7.1
name: php-7.1
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v2

- name: Alpine 3.7
- name: alpine-3.7
run: make test-image IMAGE="php:7.1-fpm-alpine3.7" DOCKERFILE="alpine"

- name: Alpine 3.8
- name: alpine-3.8
run: make test-image IMAGE="php:7.1-fpm-alpine3.8" DOCKERFILE="alpine"

- name: Stretch
- name: stretch
run: make test-image IMAGE="php:7.1-fpm-stretch" DOCKERFILE="stretch"

test-72:
name: php-7.2
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v2

- name: alpine-3.7
run: make test-image IMAGE="php:7.2-fpm-alpine3.7" DOCKERFILE="alpine"

- name: alpine-3.8
run: make test-image IMAGE="php:7.2-fpm-alpine3.8" DOCKERFILE="alpine"

- name: stretch
run: make test-image IMAGE="php:7.2-fpm-stretch" DOCKERFILE="stretch"

0 comments on commit 7464405

Please sign in to comment.