Skip to content

Fix Build Status Badge in README.md #18

Fix Build Status Badge in README.md

Fix Build Status Badge in README.md #18

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
tests:
name: "Tests"
runs-on: "ubuntu-latest"
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
extensions: mbstring
- name: "Install dependencies"
run: "composer install --no-interaction --no-progress --no-suggest"
- name: "Tests"
run: "vendor/bin/phpunit"