From c4340706b137a97df0411c2457223e8b5c77bb9c Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 30 May 2020 03:29:55 +0100 Subject: [PATCH] Use Makefile in CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66a2222..6d326d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: push: jobs: - phpunit: + test: runs-on: ${{ matrix.os }} strategy: matrix: @@ -37,4 +37,4 @@ jobs: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest - name: Execute tests - run: vendor/bin/phpunit tests --testdox --color=always + run: make test