From 185187d39a8574b6e50e872aa25eb04748e0435a Mon Sep 17 00:00:00 2001 From: Julius Kiekbusch Date: Thu, 25 Jan 2024 14:37:35 +0100 Subject: [PATCH] Fix tests (#130) * Fix tests * Dont run formatting on fork * remove pull request --- .github/workflows/coding-standards.yml | 6 +++++- .github/workflows/tests.yml | 14 +++++++------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 0d0a589..d76a6dc 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -1,6 +1,10 @@ name: fix code styling -on: [push] +on: + push: + branches: + - master + - '*.x' jobs: lint: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b436b04..4bdc488 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,9 +21,9 @@ jobs: matrix: php: [8.1, 8.2, 8.3] laravel: [10, 11] - exclude: - - php: 8.1 - laravel: 11 + exclude: + - php: 8.1 + laravel: 11 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} @@ -47,7 +47,7 @@ jobs: - name: Execute tests run: vendor/bin/pest - + windows_tests: runs-on: windows-2019 @@ -56,9 +56,9 @@ jobs: matrix: php: [8.1, 8.2, 8.3] laravel: [10, 11] - exclude: - - php: 8.1 - laravel: 11 + exclude: + - php: 8.1 + laravel: 11 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} Windows