Add get all css functions method #626
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
name: Code coverage | |
jobs: | |
code-coverage: | |
name: Code coverage | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
php-version: [ '7.4' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
ini-file: development | |
tools: composer:v2 | |
coverage: xdebug | |
- name: Show the Composer configuration | |
run: composer config --global --list | |
- name: Cache dependencies installed with composer | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/composer | |
key: php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: | | |
php${{ matrix.php-version }}-composer- | |
- name: Install Composer dependencies | |
run: | | |
composer update --with-dependencies --no-progress; | |
composer show; | |
- name: Run Tests | |
run: ./vendor/bin/phpunit --coverage-clover build/coverage/xml | |
- name: Upload coverage results to Codacy | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
if: "${{ env.CODACY_PROJECT_TOKEN != '' }}" | |
run: | | |
./vendor/bin/codacycoverage clover build/coverage/xml |