Skip to content

Commit

Permalink
Enable tests on php 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Huber committed Dec 8, 2024
1 parent 7cd5b80 commit d43628b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/tests-8.4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Run phpunit tests on 8.2

on: [push]


jobs:
phpunit:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: intl, zip, zlib
coverage: none
ini-values: memory_limit=1G, phar.readonly=0

- name: Install Project Dependencies
run: composer install --no-interaction --no-ansi --no-progress --no-suggest

- name: setup git
run: git config --global user.email "phpunit@factorial.io" && git config --global user.name "phpunit" && git config --global init.defaultBranch master

- name: Run unit tests
run: ./vendor/bin/phpunit tests --exclude-group docker

0 comments on commit d43628b

Please sign in to comment.