Prevent creating pointless update jobs for up-to-date sites (#39) #173
This file contains hidden or 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: Codestyles | |
| on: [push] | |
| jobs: | |
| tests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.3' | |
| extensions: pcntl, curl, pdo_mysql, zip, curl, redis | |
| coverage: none | |
| - name: Install Pint | |
| run: composer global require laravel/pint | |
| - name: Run Pint | |
| run: pint --test |