Skip to content

Add codename to BlockInfo and CodepointInfo #89

Add codename to BlockInfo and CodepointInfo

Add codename to BlockInfo and CodepointInfo #89

Workflow file for this run

name: Tests
on:
push:
branches:
- main
tags-ignore:
- "**"
pull_request:
branches:
- main
repository_dispatch:
types:
- ci
jobs:
ci:
name: CI
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
php-version:
- "8.1"
- "8.2"
- "8.3"
include:
-
os: ubuntu-latest
php-version: "8.2"
check-cs: true
runs-on: ${{ matrix.os }}
steps:
-
name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: ${{ matrix.check-cs && 'php-cs-fixer:v3,' || '' }} composer:v2
coverage: none
-
name: Checkout
uses: actions/checkout@v4
-
name: Cache PHP-CS-Fixer
if: matrix.check-cs
uses: actions/cache@v3
with:
path: .php-cs-fixer.cache
key: ${{ runner.os }}-${{ matrix.php-version }}-phpcsfixer
-
name: Install Composer dependencies
run: composer update --optimize-autoloader --no-progress --ansi --no-interaction
-
name: Build
run: ./bin/unipoints build
-
name: Check built assets
if: startsWith(matrix.os, 'windows') == false
run: |
if ! git diff --exit-code --name-status; then
echo "::error file=$(git diff --name-status | head -n 1)::PLEASE RUN bin/unipoints build"
exit 1
fi
-
name: Check PHP coding style
if: matrix.check-cs
run: composer run-script phpcs -- --ansi --no-interaction --dry-run --diff
-
name: PHPUnit
run: composer run-script test -- --colors=always