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 26, 2024
1 parent 78c6824 commit a4378db
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions macos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,17 @@ outputs:
runs:
using: 'composite'
steps:
- name: Check XML installation
run: |
# Check XML installation
echo '::group::Check XML installation'
if ! brew list 'libxml2' 'libxslt'
then
brew install libxml2 libxslt
fi
echo '::endgroup::'
shell: bash

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

0 comments on commit a4378db

Please sign in to comment.