Skip to content

Refactoring Stylish.php #36

Refactoring Stylish.php

Refactoring Stylish.php #36

Workflow file for this run

name: Tests
on: push
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- run: make install
- run: make test
- run: make lint
- name: Code Climate Test Coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
with:
coverageCommand: make test-coverage
coverageLocations: ${{github.workplace}}/build/logs/clover.xml:clover
debug: true