From ff969aee2c4ae90c6508e714e8cbcd08b69b46f6 Mon Sep 17 00:00:00 2001 From: Jens True Date: Mon, 24 Jul 2023 12:02:11 +0000 Subject: [PATCH] Artifacts uploading --- .gitea/workflows/build.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 754f0a8..4b08ebf 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -19,12 +19,19 @@ jobs: run: | composer config github-oauth.github.com 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 composer install - composer analyze - apt update - apt install rclone + wget https://downloads.rclone.org/rclone-current-linux-amd64.deb + dpkg -i rclone-current-linux-amd64.deb - name: Dry run run: ./backup show config.example.yml + - name: Static analysis + run: composer analyze - name: Test - run: vendor/bin/phpunit tests + run: composer test-coverage + - uses: actions/upload-artifact@v3 + with: + path: output/coverage/ - name: Document - run: phpdoc run \ No newline at end of file + run: phpdoc run + - uses: actions/upload-artifact@v3 + with: + path: output/docs \ No newline at end of file