summaryrefslogtreecommitdiff
path: root/.gitea/workflows/build.yml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-03-28 17:52:59 +0300
committerAndrew Dolgov <[email protected]>2023-03-28 17:52:59 +0300
commitda620ef5d80ec5ab0b04ad75949792f41123a0a2 (patch)
tree463cb66b3c48433772c6a3513169f71f6a1c04ab /.gitea/workflows/build.yml
parentecedc5116225f79c87c687ae32a88a25b2ecfee7 (diff)
add phpdoc job
Diffstat (limited to '.gitea/workflows/build.yml')
-rw-r--r--.gitea/workflows/build.yml11
1 files changed, 0 insertions, 11 deletions
diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml
index c91a311ea..169d87a8c 100644
--- a/.gitea/workflows/build.yml
+++ b/.gitea/workflows/build.yml
@@ -35,20 +35,9 @@ jobs:
include/*.php
plugins/**/*.php
- - 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 }}
-
- name: setup qemu
uses: https://github.com/docker/setup-qemu-action@v2