build consolidated svg file with css variables #3
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
name: "Illustrations CI" | |
on: | |
# Runs test suite when a new commit is pushed on "main" and when a new tag is created | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
# Runs test suite when a PR is opened or synchronyzed | |
pull_request: | |
# Enable manual run | |
workflow_dispatch: | |
jobs: | |
phpunit: | |
name: "PHPUnit" | |
runs-on: "ubuntu-24.04" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Install dev dependencies" | |
run : composer install | |
- name: "Execute PHPunit" | |
run : vendor/bin/phpunit tests | |