From 0d8db565d36cf35753bd04807b590e331b09200c Mon Sep 17 00:00:00 2001 From: Leszek Manicki Date: Tue, 16 Jul 2024 21:27:01 +0200 Subject: [PATCH] Added github actions workflow to lint and test when pushing code --- .github/workflows/push.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/push.yaml diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml new file mode 100644 index 0000000..1056cde --- /dev/null +++ b/.github/workflows/push.yaml @@ -0,0 +1,28 @@ +name: Lint and Test +on: push +permissions: + contents: read +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + php_version: [ '7.2', '7.3', '7.4', '8.0', '8.1' ] + steps: + - uses: actions/checkout@v4 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php_version }} + - name: Validate composer.json and composer.lock + run: composer validate --strict + - name: Cache Composer packages + id: composer-cache + uses: actions/cache@v3 + with: + path: vendor + key: ${{ runner.os }}-php-${{ matrix.php_version}}-${{ hashFiles('**/composer.lock') }} + - name: Install dependencies + run: composer install --prefer-source --no-progress + - name: Run test suite + run: composer run-script ci