Add startup instructions
All checks were successful
PHP Composer / build (pull_request) Successful in 10m48s
All checks were successful
PHP Composer / build (pull_request) Successful in 10m48s
This commit is contained in:
@@ -23,12 +23,23 @@ jobs:
|
||||
- name: Validate composer.json
|
||||
run: composer validate
|
||||
|
||||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: '1.20'
|
||||
|
||||
- uses: https://gitea.com/actions/go-hashfiles@v0.0.1
|
||||
id: get-hash
|
||||
with:
|
||||
patterns: |-
|
||||
go.sum
|
||||
**/composer.json
|
||||
|
||||
- name: Cache Composer packages
|
||||
id: composer-cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: vendor
|
||||
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.json') }}
|
||||
key: ${{ runner.os }}-php-${{ steps.get-hash.outputs.hash }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-php-
|
||||
|
||||
|
||||
Reference in New Issue
Block a user