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