summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2020-12-27 20:12:27 +0000
committerGreg Roach <greg@subaqua.co.uk>2021-03-11 10:22:29 +0000
commitf7cf8a155e2743f3d124eef3d30a558ab062fa4b (patch)
treea45052d9dc68b2049f4848e1043f56f6782ad3dd /.github
parent7989fe578b0082b5d3378ee0b461904deb3802d1 (diff)
downloadwebtrees-f7cf8a155e2743f3d124eef3d30a558ab062fa4b.tar.gz
webtrees-f7cf8a155e2743f3d124eef3d30a558ab062fa4b.tar.bz2
webtrees-f7cf8a155e2743f3d124eef3d30a558ab062fa4b.zip
Remove vendor dir, add support for PHP 8.0, drop support for PHP 7.1 and 7.2
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpunit.yaml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml
index 8f02b92b73..8210b1da62 100644
--- a/.github/workflows/phpunit.yaml
+++ b/.github/workflows/phpunit.yaml
@@ -8,8 +8,8 @@ jobs:
strategy:
matrix:
- operating-system: [ubuntu-latest]
- php-version: ['7.1', '7.2', '7.3', '7.4']
+ operating-system: [ubuntu-20.04]
+ php-version: ['7.3', '7.4', '8.0']
name: Testing PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }}
@@ -26,9 +26,6 @@ jobs:
- run: composer install --no-progress
- - run: composer require pcov/clobber
- - run: vendor/bin/pcov clobber
-
- run: vendor/bin/phpunit --coverage-clover=tests/coverage.xml
- uses: codecov/codecov-action@v1