Skip to content

Commit

Permalink
fix: Add gettext installation for macOS
Browse files Browse the repository at this point in the history
- Install gettext using Homebrew on macOS runners
- Force link gettext to resolve library dependency
- Conditional execution only on macOS
  • Loading branch information
anandgupta42 committed Jan 9, 2025
1 parent aee1fa4 commit c377c5c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ jobs:
steps:
- uses: actions/checkout@v3

# Install gettext on macOS
- name: Install gettext on macOS
if: runner.os == 'macOS'
run: |
brew install gettext
brew link gettext --force
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit c377c5c

Please sign in to comment.