parent
fdbbbc3bd6
commit
f2c6196d89
1 changed files with 13 additions and 0 deletions
|
@ -4,11 +4,24 @@ jobs:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
- name: setup extension cache
|
||||||
|
id: extcache
|
||||||
|
uses: https://github.com/shivammathur/cache-extensions@v1
|
||||||
|
with:
|
||||||
|
extensions: intl,zip
|
||||||
|
key: cache-v1
|
||||||
|
- name: cache extensions
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: ${{ steps.extcache.outputs.dir }}
|
||||||
|
key: ${{ steps.extcache.outputs.key }}
|
||||||
|
restore-keys: ${{ steps.extcache.outputs.key }}
|
||||||
- name: setup php
|
- name: setup php
|
||||||
uses: https://github.com/shivammathur/setup-php@v2
|
uses: https://github.com/shivammathur/setup-php@v2
|
||||||
with:
|
with:
|
||||||
php-version: '8.4'
|
php-version: '8.4'
|
||||||
tools: 'composer'
|
tools: 'composer'
|
||||||
|
extensions: intl,zip
|
||||||
- name: lint
|
- name: lint
|
||||||
run: composer lint
|
run: composer lint
|
||||||
- name: test
|
- name: test
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue