From 495b7cef1a602d47ecdbea1fc03a61fd0dec3b2c Mon Sep 17 00:00:00 2001 From: gomzyakov Date: Wed, 11 Dec 2024 09:40:13 +0500 Subject: [PATCH] Fix target branch on CI --- .github/workflows/phpstan.yml | 4 ++-- .github/workflows/phpunit.yml | 8 ++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index da2cd04..327718d 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -2,9 +2,9 @@ name: PHPStan on: push: - branches: [ main ] + branches: [ master ] pull_request: - branches: [ main ] + branches: [ master ] jobs: analyze: diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index b8e4b6f..a4da735 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -2,9 +2,9 @@ name: PHPUnit on: push: - branches: [ main ] + branches: [ master ] pull_request: - branches: [ main ] + branches: [ master ] jobs: test: @@ -22,10 +22,6 @@ jobs: extensions: mbstring ini-values: max_execution_time=180 -# - name: Install PHP extensions -# run: | -# sudo apt update - - name: Install Composer Dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist