From 085611cde159f0be347de4179c11854011073d66 Mon Sep 17 00:00:00 2001 From: FlavioBarachino Date: Fri, 15 Dec 2023 14:41:56 +0100 Subject: [PATCH] Creato workflow --- .gitea/workflows/compile.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .gitea/workflows/compile.yaml diff --git a/.gitea/workflows/compile.yaml b/.gitea/workflows/compile.yaml new file mode 100644 index 0000000..c832424 --- /dev/null +++ b/.gitea/workflows/compile.yaml @@ -0,0 +1,33 @@ +name: Laravel + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + laravel-tests: + + runs-on: ubuntu-latest + + steps: + - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e + with: + php-version: '8.3' + - uses: actions/checkout@v3 + - name: Copy .env + run: php -r "file_exists('.env') || copy('.env.example', '.env');" + - name: Install Dependencies + run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist + - name: Generate key + run: php artisan key:generate + - name: styles and js creation + run: npm install && npm prod + - name: Directory Permissions + run: chmod -R 777 storage bootstrap/cache + - name: Execute tests (Unit and Feature tests) via PHPUnit + env: + DB_CONNECTION: mysql + DB_DATABASE: bubofamily + run: vendor/bin/phpunit \ No newline at end of file