summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2020-02-04 17:01:06 +0000
committerGreg Roach <fisharebest@webtrees.net>2020-02-04 17:01:06 +0000
commit1792ff1cf1956b41f3e3c853cfb279a803a71ed2 (patch)
tree2dc1a5862cbb7e0f1ebf594b0b3840216511586a /.github
parentc9a496a616af0498b7145128f9dd2f4ea3d4b099 (diff)
downloadwebtrees-1792ff1cf1956b41f3e3c853cfb279a803a71ed2.tar.gz
webtrees-1792ff1cf1956b41f3e3c853cfb279a803a71ed2.tar.bz2
webtrees-1792ff1cf1956b41f3e3c853cfb279a803a71ed2.zip
Update github actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpstan.yaml2
-rw-r--r--.github/workflows/phpunit.yaml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/phpstan.yaml b/.github/workflows/phpstan.yaml
index a4053aa8b5..858e0ede9a 100644
--- a/.github/workflows/phpstan.yaml
+++ b/.github/workflows/phpstan.yaml
@@ -15,7 +15,7 @@ jobs:
- uses: shivammathur/setup-php@master
with:
php-version: 7.4
- extension-csv: gd,intl,sqlite,zip
+ extensions: gd,intl,mbstring,sqlite,zip
coverage: disable
- run: composer global require phpstan/phpstan phpstan/extension-installer phpstan/phpstan-deprecation-rules phpstan/phpstan-strict-rules phpstan/phpstan-phpunit
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml
index 8dfcaee03d..8fd7673285 100644
--- a/.github/workflows/phpunit.yaml
+++ b/.github/workflows/phpunit.yaml
@@ -17,7 +17,7 @@ jobs:
- uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-version }}
- extension-csv: gd,intl,mbstring,pdo_sqlite,sqlite3,zip
+ extensions: gd,intl,mbstring,sqlite,zip
coverage: pcov
- uses: actions/checkout@v1