From 7b08f48ae45339ce8a53d5d31439ee512cf935f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Fri, 15 May 2020 19:19:13 +0200 Subject: [PATCH] Enhance CI --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bfea19f..96ec4f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,10 +7,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout code + uses: actions/checkout@v2 + - name: Check Composer configuration + run: composer validate --strict - name: Install dependencies run: composer install - name: Start Redis uses: supercharge/redis-github-action@1.1.0 - - name: Run tests - run: phpunit \ No newline at end of file + - name: Run unit tests + run: phpunit