From 48e9950a1f929c629a8c7f5832c818897e65fa8c Mon Sep 17 00:00:00 2001 From: roxblnfk Date: Fri, 13 Dec 2024 20:36:58 +0400 Subject: [PATCH] Update github actions --- .github/workflows/cs-fix.yml | 16 ++++++++++++++++ .github/workflows/main.yml | 2 +- .github/workflows/psalm.yml | 3 ++- 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/cs-fix.yml diff --git a/.github/workflows/cs-fix.yml b/.github/workflows/cs-fix.yml new file mode 100644 index 00000000..db5860c9 --- /dev/null +++ b/.github/workflows/cs-fix.yml @@ -0,0 +1,16 @@ +--- + +on: # yamllint disable-line rule:truthy + push: + branches: + - '*' + +name: Fix Code Style + +jobs: + cs-fix: + permissions: + contents: write + uses: spiral/gh-actions/.github/workflows/cs-fix.yml@master + +... diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4691efbe..d89daf7f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['8.1', '8.2', '8.3'] + php-version: ['8.1', '8.2', '8.3', '8.4'] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index ccd61211..fd4c32b2 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -1,7 +1,8 @@ on: - pull_request: + pull_request: null push: branches: + - master - '*.*' name: static analysis