Laravel 10.x Shift #68
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Enlightn Checks | |
on: [pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
env: | |
ENLIGHTN_USERNAME: ${{ secrets.ENLIGHTN_USERNAME }} | |
ENLIGHTN_API_TOKEN: ${{ secrets.ENLIGHTN_API_TOKEN }} | |
run: | | |
composer config http-basic.satis.laravel-enlightn.com "$ENLIGHTN_USERNAME" "$ENLIGHTN_API_TOKEN" | |
composer install --prefer-dist --no-interaction --no-progress --no-scripts | |
- name: Run Enlightn Checks and Trigger the Enlightn Bot | |
if: ${{ github.event_name == 'pull_request' }} | |
env: | |
ENLIGHTN_USERNAME: ${{ secrets.ENLIGHTN_USERNAME }} | |
ENLIGHTN_API_TOKEN: ${{ secrets.ENLIGHTN_API_TOKEN }} | |
ENLIGHTN_GITHUB_REPO: ${{ github.repository }} | |
run: php -r "file_exists('.env') || copy('.env.testing', '.env');" | |
- name: Generate key | |
run: php artisan key:generate | |
- name: Permissions | |
run: chmod -R 777 storage bootstrap/cache | |
- name: Create Database | |
run: | | |
mkdir -p database | |
touch database/database.sqlite | |
- name: Enlightn pipeline | |
run: php artisan enlightn --ci --report --review --issue=${{ github.event.number }} |