#389 ENABLE_ALL_PLANT_ELEMENTS works with PlantUML v1.2025.1 and greater too #293
Workflow file for this run
This file contains hidden or 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: Percy Tests | |
on: | |
push: | |
paths: | |
- '*.puml' | |
- 'percy/**' | |
- '.github/workflows/run-percy-tests.yml' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Setup Graphviz | |
uses: ts-graphviz/setup-graphviz@v2 | |
- name: Process diagrams | |
uses: Timmy/plantuml-action@v1 | |
with: | |
args: '-v percy -o _parsed -DRELATIVE_INCLUDE="./.."' | |
- name: Upload | |
run: npx @percy/cli upload percy/_parsed | |
env: | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} |