Skip to content

Refactoring

Refactoring #79

Workflow file for this run

name: tests-check
on: push
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Install
run: make install
- name: Run linter
run: make lint
- name: Run tests
run: make test
- name: Run test & publish code coverage
uses: paambaati/codeclimate-action@v5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
coverageLocations: build/logs/clover.xml:clover
debug: true