|
5 | 5 | types: [opened, synchronize, reopened] |
6 | 6 |
|
7 | 7 | jobs: |
8 | | - psalm: |
9 | | - runs-on: ubuntu-latest |
10 | | - strategy: |
11 | | - matrix: |
12 | | - php-version: ['8.1'] |
| 8 | +# psalm: |
| 9 | +# runs-on: ubuntu-latest |
| 10 | +# strategy: |
| 11 | +# matrix: |
| 12 | +# php-version: ['8.1'] |
13 | 13 |
|
14 | | - steps: |
15 | | - - name: Checkout sources |
16 | | - uses: actions/checkout@v3 |
| 14 | +# steps: |
| 15 | +# - name: Checkout sources |
| 16 | +# uses: actions/checkout@v3 |
17 | 17 |
|
18 | | - - name: Setup PHP ${{ matrix.php-version }} |
19 | | - uses: shivammathur/setup-php@v2 |
20 | | - with: |
21 | | - php-version: ${{ matrix.php-version }} |
| 18 | +# - name: Setup PHP ${{ matrix.php-version }} |
| 19 | +# uses: shivammathur/setup-php@v2 |
| 20 | +# with: |
| 21 | +# php-version: ${{ matrix.php-version }} |
22 | 22 |
|
23 | | - - name: Get Composer Cache Directory |
24 | | - id: composer-cache |
25 | | - run: echo "::set-output name=dir::$(composer config cache-files-dir)" |
26 | | - - name: Cache composer files |
27 | | - uses: actions/cache@v2.1.7 |
28 | | - with: |
29 | | - path: ${{ steps.composer-cache.outputs.dir }} |
30 | | - key: ${{ runner.os }}-composer-v4-${{ hashFiles('**/composer.json') }}-${{ matrix.php-version }} |
31 | | - restore-keys: | |
32 | | - ${{ runner.os }}-composer-v4-${{ hashFiles('**/composer.json') }}-${{ matrix.php-version }} |
33 | | - ${{ runner.os }}-composer-v4-${{ hashFiles('**/composer.json') }} |
34 | | - ${{ runner.os }}-composer-v4- |
| 23 | +# - name: Get Composer Cache Directory |
| 24 | +# id: composer-cache |
| 25 | +# run: echo "::set-output name=dir::$(composer config cache-files-dir)" |
| 26 | +# - name: Cache composer files |
| 27 | +# uses: actions/cache@v3 |
| 28 | +# with: |
| 29 | +# path: ${{ steps.composer-cache.outputs.dir }} |
| 30 | +# key: ${{ runner.os }}-composer-v4-${{ hashFiles('**/composer.json') }}-${{ matrix.php-version }} |
| 31 | +# restore-keys: | |
| 32 | +# ${{ runner.os }}-composer-v4-${{ hashFiles('**/composer.json') }}-${{ matrix.php-version }} |
| 33 | +# ${{ runner.os }}-composer-v4-${{ hashFiles('**/composer.json') }} |
| 34 | +# ${{ runner.os }}-composer-v4- |
35 | 35 |
|
36 | | - - name: Install dependencies |
37 | | - run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader |
| 36 | +# - name: Install dependencies |
| 37 | +# run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader |
38 | 38 |
|
39 | | - - name: Run psalm |
40 | | - run: vendor/bin/psalm --output-format=github |
| 39 | +# - name: Run psalm |
| 40 | +# run: vendor/bin/psalm --output-format=github |
41 | 41 |
|
42 | 42 |
|
43 | 43 | phpstan: |
|
59 | 59 | id: composer-cache |
60 | 60 | run: echo "::set-output name=dir::$(composer config cache-files-dir)" |
61 | 61 | - name: Cache composer files |
62 | | - uses: actions/cache@v2.1.7 |
| 62 | + uses: actions/cache@v3 |
63 | 63 | with: |
64 | 64 | path: ${{ steps.composer-cache.outputs.dir }} |
65 | 65 | key: ${{ runner.os }}-composer-v4-${{ hashFiles('**/composer.json') }}-${{ matrix.php-version }} |
|
0 commit comments