We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef0fffd commit 3703615Copy full SHA for 3703615
.github/workflows/pytest.yml
@@ -66,4 +66,5 @@ jobs:
66
fail_ci_if_error: true
67
flags: unittests
68
token: ${{ secrets.CODECOV_TOKEN }}
69
+ version: v0.6.0
70
.github/workflows/smoke_test.yml
@@ -44,9 +44,13 @@ jobs:
44
# Install click >= 8.0.0 for CLI supports
45
python -m pip install click==8.0.3
46
47
+ - name: Install MacPorts
48
+ uses: melusina-org/setup-macports@v1
49
+ if: matrix.os == 'macos-13'
50
+
51
- run: sudo apt-get -y install graphviz
52
if: matrix.os == 'ubuntu-latest'
- - run: brew install graphviz
53
+ - run: sudo port install graphviz
54
if: matrix.os == 'macos-13'
55
- run: choco install graphviz
56
if: matrix.os == 'windows-latest'
0 commit comments