Try removing a key requirement to see what pip-compile does #3
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: Run pip-compile | |
on: | |
workflow_dispatch: # allows you to manually trigger the workflow | |
push: | |
branches: [ "maint/pip-compile-github-action" ] | |
jobs: | |
pip-compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code Repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install pip-tools | |
run: | | |
python -m pip install --upgrade pip | |
pip install pip-tools | |
- name: Run pip-compile | |
run: | | |
pip-compile requirements/requirements.in | |
pip-compile requirements/test-requirements.in | |
pip-compile requirements/dev-requirements.in | |
- name: List changes | |
run: | | |
git status | |
git diff |