From 112fa5ac25e72ae01bca686646a7c549b15a2f93 Mon Sep 17 00:00:00 2001 From: Bart Jaskulski <bjaskulski@protonmail.com> Date: Thu, 12 May 2022 18:56:09 +0200 Subject: [PATCH] ci: change execution image --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 997f9b3..2c5dc8c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: php:latest +image: composer cache: paths: @@ -7,9 +7,9 @@ cache: build: stage: build script: - - ./tools/composer install + - composer install test: stage: test script: - - ./tools/composer test + - composer test -- GitLab