Skip to content

Commit

Permalink
Merge pull request #239 from SynBioDex/232-macos-build-failures
Browse files Browse the repository at this point in the history
Attempt to fix MacOS build failures (#232) by adjusting CI workflow
  • Loading branch information
jakebeal authored Apr 7, 2024
2 parents 1534f77 + d0735ff commit d8df83c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
python-version: 3.11 # Return to 3.x after resolution of https://github.com/RDFLib/pySHACL/issues/212

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -39,7 +39,11 @@ jobs:
python -m pip install pytest
python -m pip install interrogate
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
uses: ts-graphviz/setup-graphviz@v2
with:
# Skip running of sometimes problematic brew update command on macOS.
# Remove after resolution of https://github.com/ts-graphviz/setup-graphviz/issues/593
macos-skip-brew-update: 'true' # default false
- name: Show Node.js version
run: |
node --version
Expand Down

0 comments on commit d8df83c

Please sign in to comment.