Skip to content

Commit

Permalink
Revert the php-8 experiment. Need to update a few dependencies before…
Browse files Browse the repository at this point in the history
… trying again
  • Loading branch information
christeredvartsen committed Aug 25, 2021
1 parent 3d1dfd2 commit 508c9bb
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,23 @@ jobs:
name: Unit tests
strategy:
matrix:
os: [ubuntu-20.04]
php: [7.4]
experimental: [false]
include:
- os: ubuntu-20.04
php: 8.0
experimental: true
operating-system: ['ubuntu-20.04']
php-versions: ['7.4']
mongodb-versions: ['5.0.2']

runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
runs-on: ${{ matrix.operating-system }}

services:
mongodb:
image: mongo:5.0.2
image: mongo:${{ matrix.mongodb-versions }}
ports:
- 27017:27017

steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
php-version: ${{ matrix.php-versions }}
extensions: imagick

- uses: actions/checkout@v2
Expand Down

0 comments on commit 508c9bb

Please sign in to comment.