mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 16:52:17 +01:00
Added telescope, basic project endpoint, basic filament resources, GitHub actions
This commit is contained in:
24
.github/workflows/phpstan.yml
vendored
Normal file
24
.github/workflows/phpstan.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: Static code analysis (PHPStan)
|
||||
on: push
|
||||
jobs:
|
||||
phpstan:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: "Checkout code"
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: "Setup PHP"
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: '8.2'
|
||||
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
|
||||
coverage: none
|
||||
|
||||
- name: "Run composer install"
|
||||
run: composer install -n --prefer-dist
|
||||
|
||||
- name: "Run PHPStan"
|
||||
run: composer analyse
|
||||
|
||||
|
||||
Reference in New Issue
Block a user