Skip to content

chore: remove funding #24

chore: remove funding

chore: remove funding #24

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
coverage: xdebug
- run: composer self-update && composer install && composer dump-autoload
- run: vendor/bin/phpunit --coverage-clover coverage.xml tests
- uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}