GitHub Action to Compare Dependencies #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compare Dependency Constraints | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
compare_dependency_constraints_script: | |
runs-on: ubuntu-latest | |
if: github.repository == 'demisto/dockerFiles' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies with pipenv | |
run: | | |
python -m pip install --upgrade pip | |
pip install pipenv | |
pipenv install | |
- name: Run compare_dependency_constraints Script. | |
run: | | |
ls | |
echo "==== $(date): Starting environment setup... ====" | |
cd "$GITHUB_WORKSPACE" | |
echo "==== $(date): Running chceking Native dependency ====" | |
pipenv run python utils/compare_dependency_constraints.py |