We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81e1b4d commit 9ec05ccCopy full SHA for 9ec05cc
.github/workflows/ci.yml
@@ -11,8 +11,8 @@ jobs:
11
strategy:
12
matrix:
13
os:
14
- - ubuntu-20.04
15
- - windows-2019
+ - ubuntu-22.04
+ - windows-2022
16
php:
17
- 8.2
18
- 8.1
@@ -53,13 +53,11 @@ jobs:
53
54
PHPUnit-hhvm:
55
name: PHPUnit (HHVM)
56
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-22.04
57
+ container: hhvm/hhvm:3.30-lts-latest
58
continue-on-error: true
59
steps:
- - uses: actions/checkout@v2
60
- - uses: azjezz/setup-hhvm@v1
61
- with:
62
- version: lts-3.30
63
- - run: composer self-update --2.2 # downgrade Composer for HHVM
64
- - run: hhvm $(which composer) install
+ - uses: actions/checkout@v1
+ - run: curl -O https://getcomposer.org/download/latest-2.2.x/composer.phar
+ - run: hhvm composer.phar install
65
- run: hhvm vendor/bin/phpunit
0 commit comments