From 4f81d10d83da2c7c4fb0d8444675e66b66af1a6d Mon Sep 17 00:00:00 2001 From: Alex Rock Ancelet Date: Tue, 19 Dec 2023 09:10:33 +0100 Subject: [PATCH] Reorder installation in CI --- .github/workflows/php.yml | 3 +++ Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 09d8e2a..e395e67 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -62,6 +62,9 @@ jobs: - name: Setup run: composer config extra.symfony.require ^${{ matrix.symfony-version }} + - name: Install + run: make install + - name: Test run: | make test diff --git a/Makefile b/Makefile index d1a8400..448bb85 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ help: ## Show this help. install: vendor imagemagick-docker ## Install composer dependencies and Docker image for testing .PHONY: install -start: imagemagick-docker ## Start Docker image for testing +start: ## Start Docker image for testing @docker start $(IMAGEMAGICK_DOCKER_IMAGE) .PHONY: start