From 8449c01517a59011e337ccfa74e0b725de17f988 Mon Sep 17 00:00:00 2001
From: Dries Vints <dries@vints.io>
Date: Fri, 28 Oct 2022 14:42:55 +0200
Subject: [PATCH] Test on PHP 8.2

---
 .github/workflows/tests.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 9ee7ccd..df151d6 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -2,6 +2,9 @@ name: tests
 
 on:
   push:
+    branches:
+      - master
+      - '*.x'
   pull_request:
   schedule:
     - cron: '0 0 * * *'
@@ -13,7 +16,7 @@ jobs:
     strategy:
       fail-fast: true
       matrix:
-        php: ['8.0', 8.1]
+        php: ['8.0', 8.1, 8.2]
         laravel: [9.x]
 
     name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}