Skip to content

Commit

Permalink
install python in gh action, lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomarquezp committed Jan 22, 2024
1 parent ac63e21 commit 7aab0a5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/verify_library_generation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,16 @@ jobs:
run: |
brew update --preinstall
brew install coreutils
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: install python dependencies
shell: bash
run: |
set -ex
pushd library_generation
pip install -r requirements.in
popd
- name: Run shell unit tests
run: |
set -x
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ declare -a configuration_yamls=(
)


for configuration_yaml in ${configuration_yamls[@]}; do
for configuration_yaml in "${configuration_yamls[@]}"; do
library_api_shortnames=$(py_util "get_configuration_yaml_library_api_shortnames" "${configuration_yaml}")
destination_path=$(py_util "get_configuration_yaml_destination_path" "${configuration_yaml}")

Expand Down

0 comments on commit 7aab0a5

Please sign in to comment.