Skip to content

Update phpunit.xml

Update phpunit.xml #33

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- "8.0"
- "8.1"
- "8.2"
- "8.3"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
- name: use https instead of http
run: git config --global url.https://github.com/.insteadOf ssh://[email protected]/
- name: composer install
run: composer install --prefer-dist
env:
token: ${{secrets.COMPOSER_AUTH}}
- name: composer test
run: composer test