diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b116cb0ecd..780f582c42 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -55,9 +55,15 @@ jobs: - name: Setup Tools/Dependencies macOS if: runner.os == 'macOS' run: | - brew install aspell cairo + brew install aspell # Add additional packages on 3.11: https://github.com/ethereum/execution-spec-tests/issues/274 if [ ${{ matrix.python }} == '3.11' ]; then brew install autoconf automake libtool; fi + - name: Verify Cairo Installation + if: runner.os == 'macOS' + run: | + brew list --versions cairo + find /usr/local -name libcairo.so.2 + find /usr/local -name libcairo.2.dylib - name: Install Tox and any other packages run: pip install tox - name: Run Tox (CPython)