From 981b9608fada17296af47f46dce9782916c3dd81 Mon Sep 17 00:00:00 2001 From: VojtaB Date: Mon, 26 Feb 2024 16:51:22 +0100 Subject: [PATCH] add php 8.3 support in github workflow --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92f9619..822cdb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,23 @@ on: - "**" jobs: + php83: + name: "php 8.3" + runs-on: ubuntu-latest + container: "nofutur3/php-tests:8.3" + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install dependencies + run: composer install + + - name: Run static analysis + run: composer stan + + - name: Run tests + run: composer test + php82: name: "php 8.2 psr/http-message 2.0" runs-on: ubuntu-latest