Skip to content

Commit

Permalink
Merge pull request #25 from alecpl/dev/php83
Browse files Browse the repository at this point in the history
CI: Enable tests on PHP 8.3
  • Loading branch information
jeremy379 authored Aug 28, 2024
2 parents 01e9b1e + 577394a commit 8477291
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/php83.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Test

on:
pull_request:
branches:
- "*"
push:
branches:
- "*"

jobs:
checks:
name: Check PHP 8.3
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up PHP 8.3
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- name: Install Dependencies
run: composer install --prefer-dist --ignore-platform-reqs --no-interaction

- name: Check code styling
run: composer ecs-check

- name: Create keys
run: sh ./bin/create_keys

- name: Run unit and feature tests
run: composer test

0 comments on commit 8477291

Please sign in to comment.