diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dc8bec4..457a7d0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php with: - php-version: '7.4' + php-version: '8.3' extensions: mbstring, dom, fileinfo, mysql, libxml, xml, xmlwriter, dom, tokenizer, filter, json, phar, pcre, openssl, pdo, intl, curl - name: Cache composer dependencies @@ -21,10 +21,10 @@ jobs: path: vendor key: composer-${{ hashFiles('composer.lock') }} - - name: Run composer install - run: composer install -n --prefer-dist - env: - APP_ENV: testing + #- name: Run composer install + # run: composer install -n --prefer-dist + # env: + # APP_ENV: testing - name: Prepare Laravel Application run: | @@ -49,11 +49,11 @@ jobs: APP_ENV: testing - name: Php code sniffer - run: ./vendor/bin/phpcs + run: ./vendor/bin/phpcs --config-set ignore_warnings_on_exit 1 - name: Upload artifacts uses: actions/upload-artifact@master if: failure() with: name: Logs - path: ./storage/logs \ No newline at end of file + path: ./storage/logs