Skip to content

Add font normalization feature #6

Add font normalization feature

Add font normalization feature #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
cache: maven
- name: Run unit tests
run: mvn test --batch-mode --fail-at-end
eyes-tests:
runs-on: ubuntu-latest
needs: unit-tests
if: github.event_name == 'push' || !github.event.pull_request.head.repo.fork
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
cache: maven
- name: Run Eyes integration tests
if: env.APPLITOOLS_API_KEY != ''
env:
APPLITOOLS_API_KEY: ${{ secrets.APPLITOOLS_API_KEY }}
run: mvn test --batch-mode -Peyes-tests