Skip to content

Commit

Permalink
Added github actions workflow to lint and test when pushing code
Browse files Browse the repository at this point in the history
  • Loading branch information
manicki committed Jul 16, 2024
1 parent 7aa40f2 commit d6bb230
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
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

0 comments on commit d6bb230

Please sign in to comment.