From 51a06fa66c320883132572cb3570fde52878754c Mon Sep 17 00:00:00 2001 From: Jens True Date: Mon, 24 Jul 2023 11:38:27 +0000 Subject: [PATCH] More steps --- .gitea/workflows/build.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 4f820e6..f1a1fa9 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -5,7 +5,6 @@ on: push jobs: requirements: runs-on: ubuntu-latest - steps: - name: Check out repository code uses: actions/checkout@v3 @@ -14,6 +13,16 @@ jobs: with: php-version: '8.2' extensions: mbstring, xml, curl, zip - tools: composer - - name: Install dependecies - run: composer install \ No newline at end of file + tools: composer, php-doc + - name: Install dependencies + run: | + composer install + composer analyze + apt update + apt install rclone + - name: Dry run + run: ./backup show config.example.yml + - name: Test + run: vendor/bin/phpunit tests + - name: Document + run: phpdoc run \ No newline at end of file