Add startup instructions
All checks were successful
PHP Composer / build (pull_request) Successful in 10m48s

This commit is contained in:
Armel van Ravels
2024-08-30 22:39:46 +02:00
parent bb1d280731
commit f2273a0cdb
4 changed files with 35 additions and 1 deletions

View File

@@ -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-