⬆ Bump jira from 3.4.1 to 3.8.0 #125
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: Check Python dependencies | |
on: | |
pull_request: | |
branches: [ master ] | |
paths: | |
- 'pyproject.toml' | |
- 'poetry.lock' | |
jobs: | |
check-python-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: make dev-env | |
- name: Check if project's Python dependencies files are up to date | |
run: | | |
make update-requirements | |
test -z "$(git status --short)" |