Skip to content

fix: make Pest work with GitHub Actions #208

fix: make Pest work with GitHub Actions

fix: make Pest work with GitHub Actions #208

Workflow file for this run

name: Test CI
on:
push:
branches:
- master
pull_request:
paths-ignore:
- '*.md'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
php-version: [8.2, 8.3, 8.4]
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer
- run: composer install
- run: vendor/bin/phpcs
- run: vendor/bin/phpstan
- run: vendor/bin/pest