From 63cabe1188829ffa4af89314201c58534e213d67 Mon Sep 17 00:00:00 2001 From: KEINOS Date: Sat, 13 Apr 2024 13:44:21 +0900 Subject: [PATCH] fix: graphviz error during ci ("brew link" fail on macOS) --- .github/workflows/go.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index f016752..bccb6c7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -28,6 +28,12 @@ jobs: go-version-file: 'go.mod' cache: true + - name: Remove symlink 2to3 + if: matrix.os == 'macos-latest' + run: | + : # Workaround GitHub Actions Python issues + brew unlink python && brew link --overwrite python + - name: Set up Graphviz uses: ts-graphviz/setup-graphviz@v2