diff --git a/.github/workflows/ci-php.yaml b/.github/workflows/ci-php.yaml index 63b5e70..92608b5 100644 --- a/.github/workflows/ci-php.yaml +++ b/.github/workflows/ci-php.yaml @@ -17,8 +17,11 @@ jobs: fail-fast: false matrix: php: - - "7.4" - "8.0" + - "8.1" + - "8.2" + - "8.3" + - "8.4" wpmu: - "0" - "1" @@ -34,6 +37,10 @@ jobs: - 3306 options: --health-cmd="healthcheck.sh --innodb_initialized" --health-interval=5s --health-timeout=2s --health-retries=3 steps: + - name: Install svn + run: sudo apt-get update && sudo apt-get install -y subversion + shell: bash + - name: Check out source code uses: actions/checkout@v3.3.0