Skip 26H1, remove win10 check in doom scroll #32
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: CI | |
| on: [push] | |
| jobs: | |
| phpstan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: php-actions/composer@v6 # or alternative dependency management | |
| - uses: php-actions/phpstan@v3 | |
| with: | |
| path: . | |
| configuration: phpstan.neon | |
| # ... then your own project steps ... |