This action provides the following functionality for GitHub Actions users:
- Install Graphviz cross-platform (Linux, macOS, Windows)
 
This action will detect the operating system and install Graphviz cross-platform. You may use the action without any additional parameters.
steps:
- uses: tlylt/install-graphviz@v1name: Test install-graphviz
on:
  push:
    branches:
      - main
jobs:
  build:
    strategy:
      matrix:
        platform: [ubuntu-latest, windows-latest, macos-latest]
    runs-on: ${{ matrix.platform }}
    name: Test
    steps:
      - uses: tlylt/install-graphviz@mainUpdates will be done on the main branch. When ready, tag and release according to semver.
The scripts and documentation in this project are released under the MIT License