-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (27 loc) · 785 Bytes
/
psalm.yml
File metadata and controls
36 lines (27 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: psalm
on:
pull_request:
push:
branches: [ main ]
jobs:
psalm:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['8.2']
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
- run: echo "COMPOSER_CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
path: ${{ env.COMPOSER_CACHE_DIR }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- run: composer install --no-interaction --no-scripts
- run: composer run test-sca