0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

try specifying a php variant

This commit is contained in:
David Goodwin 2020-12-23 16:32:39 +00:00
parent a2dd768858
commit be20c87182

View File

@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v1
- name: Validate composer.json and composer.lock
run: composer validate
run: php7.4 $(which composer) validate
- name: setup templates_c
run: mkdir templates_c || true
@ -20,10 +20,10 @@ jobs:
run: touch config.local.php && php -v
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
run: php7.4 $(which composer) install --prefer-dist --no-progress --no-suggest
- name: Build/test
run: composer build
run: php7.4 $(which composer) build
- name: setup coveralls
run: mkdir -p build/logs || true