From d997139de2674e996c86dea341a4de589a176e14 Mon Sep 17 00:00:00 2001 From: Bas de Groot Date: Tue, 11 Aug 2020 11:06:03 +0200 Subject: [PATCH] ci checks on push --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9bad61..7c9e42f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,15 +1,14 @@ name: Continuous Integration -on: [pull_request] +on: [push, pull_request] jobs: run: - runs-on: ${{ matrix.operating-system }} + runs-on: ubuntu-18.04 strategy: matrix: - operating-system: [ubuntu-18.04, ubuntu-latest] php-versions: ['7.2', '7.3', '7.4'] - name: Quality checks PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }} + name: Quality checks PHP ${{ matrix.php-versions }} steps: - name: Checkout uses: actions/checkout@v2 @@ -42,4 +41,4 @@ jobs: - name: PHP Unit tests if: ${{ always() }} - run: vendor/bin/phpunit + run: vendor/bin/phpunit \ No newline at end of file