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