Skip to content

Commit c377c5c

Browse files
committed
fix: Add gettext installation for macOS
- Install gettext using Homebrew on macOS runners - Force link gettext to resolve library dependency - Conditional execution only on macOS
1 parent aee1fa4 commit c377c5c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v3
2121

22+
# Install gettext on macOS
23+
- name: Install gettext on macOS
24+
if: runner.os == 'macOS'
25+
run: |
26+
brew install gettext
27+
brew link gettext --force
28+
2229
- name: Set up Python ${{ matrix.python-version }}
2330
uses: actions/setup-python@v4
2431
with:

0 commit comments

Comments
 (0)