Skip to content

Commit

Permalink
add workflow for compatibility test
Browse files Browse the repository at this point in the history
  • Loading branch information
heqiming committed Jul 22, 2024
1 parent 4f5bfcf commit c8c1cdb
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/test-php-compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: PHPstan & PHPunit & Pint

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.0]

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, dom, curl, libxml, mbstring
coverage: none

- 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 }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}-
- name: Install dependencies
run: composer install --prefer-dist --no-progress

- name: Run Unit Test
run: vendor/bin/phpunit tests/

0 comments on commit c8c1cdb

Please sign in to comment.