summaryrefslogtreecommitdiff
path: root/.gitea/workflows/lint.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.gitea/workflows/lint.yaml')
-rw-r--r--.gitea/workflows/lint.yaml19
1 files changed, 5 insertions, 14 deletions
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 }}