Skip to content

Commit d014fa2

Browse files
authored
Add PHP 8.0
1 parent 0a92543 commit d014fa2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
operating-system: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04]
12-
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
12+
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
1313
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
1414
if: "!contains(github.event.head_commit.message, 'skip-build')"
1515
steps:
@@ -32,11 +32,11 @@ jobs:
3232
version='${{ matrix.php-versions }}'
3333
versions=""
3434
if [ "$DISTRIB_RELEASE" = "20.04" ]; then
35-
versions="7.4"
35+
versions="7.4 8.0"
3636
elif [ "$DISTRIB_RELEASE" = "18.04" ]; then
37-
versions="7.1 7.2 7.3 7.4"
37+
versions="7.1 7.2 7.3 7.4 8.0"
3838
elif [ "$DISTRIB_RELEASE" = "16.04" ]; then
39-
versions="5.6 7.0 7.1 7.2 7.3 7.4"
39+
versions="5.6 7.0 7.1 7.2 7.3 7.4 8.0"
4040
fi
4141
for i in $versions; do
4242
if [ "$i" = "$version" ]; then

0 commit comments

Comments
 (0)