Skip to content

Change package name and remove unused psr-4 rules #18

Change package name and remove unused psr-4 rules

Change package name and remove unused psr-4 rules #18

Workflow file for this run

name: workflow
on: [push]
jobs:
linter-phpunit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install
run: make install
- name: linter
run: make lint
- name: phpunit-tests
run: make test
- name: Run test & publish code coverage
uses: paambaati/[email protected]
env:
XDEBUG_MODE: coverage
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage-xml
coverageLocations: ${{github.workspace}}/build/logs/clover.xml:clover
debug: true