Skip to content

Commit

Permalink
Added action for php 8.1 build
Browse files Browse the repository at this point in the history
  • Loading branch information
ruff committed Mar 29, 2022
1 parent 5a0b24b commit d088b33
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.php81.ant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI (Ant, PHP 8.1)

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: imagick, swoole
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Build with Ant
run: ant -noinput -buildfile build.ant.xml

0 comments on commit d088b33

Please sign in to comment.