From d79277495d98e3d2ae866d702d82b5237bdf62f8 Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Fri, 23 Jan 2026 00:44:11 -0800 Subject: [PATCH] test upload artifiact action --- .gitea/workflows/ci.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index e6caac4..db09f99 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -101,7 +101,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.2' extensions: mbstring, intl, sqlite, bcmath coverage: none @@ -127,9 +127,15 @@ jobs: fi - name: Run phpstan - run: vendor/bin/phpstan analyse src tests --error-format=github + run: vendor/bin/phpstan analyse src tests --error-format=github > phpstan.errors - name: Run phpcs run: composer cs-check + - run: mkdir -p art + - run: echo hello > art/world.txt + - uses: actions/upload-artifact@v4 + with: + name: my-artifact + path: art/world.txt