Skip to content

chore: bump php version to 8.4 #81

chore: bump php version to 8.4

chore: bump php version to 8.4 #81

Workflow file for this run

name: CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
- name: Install dependencies
uses: php-actions/composer@v6
with:
version: 2.5.5
- name: Run Tests
run: ./.github/scripts/run-phpunit.sh
- name: Upload coverage
uses: qltysh/qlty-action/coverage@v2
with:
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
files: coverage.xml
format: clover
command: publish
verbose: true
- name: Clean up GitHub workspace
uses: docker://ubuntu:latest
with:
args: find /github/workspace/. -name . -o -prune -exec rm -rf -- {} +