Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update action.yml
  • Loading branch information
shenxianpeng authored Nov 19, 2023
commit bf85ad477a3b920a8cd7d4b7f5ecef1ee84d0944
9 changes: 9 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ inputs:
runs:
using: "composite"
steps:
- name: Install action dependencies
shell: bash
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
# https://github.com/pypa/setuptools/issues/3269
export DEB_PYTHON_INSTALL_LAYOUT=deb
fi
python3 -m pip install -r "$GITHUB_ACTION_PATH/requirements.txt"
- name: Run commit-check
- run: ${{ github.action_path }}/entrypoint.sh
shell: bash
env:
Expand Down