From dfffa20e78a0cd709157079e8c4c4d092257a3ca Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 28 Mar 2023 17:57:17 +0300 Subject: simplify pipeline setup --- .gitea/workflows/lint.yaml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) (limited to '.gitea/workflows/lint.yaml') diff --git a/.gitea/workflows/lint.yaml b/.gitea/workflows/lint.yaml index 64be3efb8..781148a15 100644 --- a/.gitea/workflows/lint.yaml +++ b/.gitea/workflows/lint.yaml @@ -3,9 +3,11 @@ name: lint on: - - push - - workflow_dispatch - - pull_request + push: + branches-ignore: + - "master" + workflow_dispatch: {} + pull_request: {} defaults: run: @@ -36,16 +38,5 @@ jobs: - name: phpunit run: php81 ./vendor/bin/phpunit - - uses: https://github.com/actions/cache/restore@v3 - id: cache-phpstan - with: - path: /tmp/phpstan - key: ${{ runner.os }}-phpstan-${{ steps.cache-hash.outputs.hash }} - - name: phpstan run: php81 -d memory_limit=-1 ./vendor/bin/phpstan --memory-limit=2G - - - uses: https://github.com/actions/cache/save@v3 - with: - path: /tmp/phpstan - key: ${{ steps.cache-phpstan.outputs.cache-primary-key }} -- cgit v1.2.3