Skip to content

Commit

Permalink
Install XML libs required by lxml
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Apr 27, 2024
1 parent 78c6824 commit e2af049
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions macos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,16 @@ outputs:
runs:
using: 'composite'
steps:
- name: Check XML installation
run: |
# Check XML installation
echo '::group::Check XML installation'
if ! pkg-config --exists libxml-2.0; then brew install libxml2; fi
if ! pkg-config --exists libxslt; then brew install libxslt; fi
pkg-config --modversion libxml-2.0 libxslt
echo '::endgroup::'
shell: bash

- name: Check for Python3
id: python
run: |
Expand Down

0 comments on commit e2af049

Please sign in to comment.