Skip to content

Fixed #7, where hexadecimal colours with an opacity notation were inc… #62

Fixed #7, where hexadecimal colours with an opacity notation were inc…

Fixed #7, where hexadecimal colours with an opacity notation were inc… #62

Workflow file for this run

name: Build
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: php-actions/composer@v5
with:
php_version: 7.4
php_extensions: mbstring xdebug
- name: PHPUnit Tests
run: ./vendor/bin/phpunit
env:
XDEBUG_MODE: coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
files: ./coverage/result.xml