File tree Expand file tree Collapse file tree 1 file changed +32
-32
lines changed Expand file tree Collapse file tree 1 file changed +32
-32
lines changed Original file line number Diff line number Diff line change 1- name : PHP Composer
2-
3- on :
4- push :
5- branches : [ "main" ]
6- pull_request :
7- branches : [ "main" ]
8-
9- permissions :
10- contents : read
11-
12- jobs :
13- build :
14- runs-on : ubuntu-latest
15-
16- steps :
17- - uses : actions/checkout@v4
18-
19- - name : Validate composer.json and composer.lock
20- run : composer validate --strict
21-
22- - name : Cache Composer packages
23- id : composer-cache
24- uses : actions/cache@v3
25- with :
26- path : vendor
27- key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
28- restore-keys : |
29- ${{ runner.os }}-php-
30-
31- - name : Install dependencies
32- run : composer install --prefer-dist --no-progress
1+ # name: PHP Composer
2+
3+ # on:
4+ # push:
5+ # branches: [ "main" ]
6+ # pull_request:
7+ # branches: [ "main" ]
8+
9+ # permissions:
10+ # contents: read
11+
12+ # jobs:
13+ # build:
14+ # runs-on: ubuntu-latest
15+
16+ # steps:
17+ # - uses: actions/checkout@v4
18+
19+ # - name: Validate composer.json and composer.lock
20+ # run: composer validate --strict
21+
22+ # - name: Cache Composer packages
23+ # id: composer-cache
24+ # uses: actions/cache@v3
25+ # with:
26+ # path: vendor
27+ # key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
28+ # restore-keys: |
29+ # ${{ runner.os }}-php-
30+
31+ # - name: Install dependencies
32+ # run: composer install --prefer-dist --no-progress
3333
3434 # - name: Run PHPStan
3535 # run: ./vendor/bin/phpstan
You can’t perform that action at this time.
0 commit comments