[Release]: 4 Nov #10698
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: Coding Standards | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
ColoredCowLaravelCI: | |
name: ColoredCowLaravelCI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP v7.4 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "7.4" | |
- name: Install composer dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist | |
- name: Setup env file | |
run: cp ./.env.example .env | |
- name: Configure application encryption key | |
run: php artisan key:generate | |
- name: Install NPM Dependencies | |
run: npm install | |
- name: clear cache | |
run: php artisan cache:clear | |
- name: ColoredCowLaravelCI | |
run: "php artisan check:ci --with-tty" |