-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (40 loc) · 1.38 KB
/
php-composer-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Composer Test
on: [pull_request]
jobs:
test:
if: github.event.ref != 'refs/heads/main'
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.2', '8.3']
steps:
- uses: actions/checkout@v4
- name: "Setup PHP"
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: "Cache Composer dependencies"
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: "Check Composer lock file is up to date"
run: composer validate --no-check-all
- name: "Install Composer dependencies"
run: |
chmod +x bin/* && sleep 1
bin/composer-auth.sh
composer install --no-progress --prefer-dist --optimize-autoloader
rm -f auth.json
env:
COMPOSER_USER: ${{ secrets.COMPOSER_USER }}
COMPOSER_PASS: ${{ secrets.COMPOSER_PASS }}
ACF_PRO_LICENSE: ${{ secrets.ACF_PRO_LICENSE }}
ACF_PRO_PASS: ${{ secrets.ACF_PRO_PASS }}
AS3CF_PRO_USER: ${{ secrets.AS3CF_PRO_USER }}
AS3CF_PRO_PASS: ${{ secrets.AS3CF_PRO_PASS }}
- name: "Run tests"
run: make test