2023-04-03 07:42:46 +00:00
|
|
|
name: Update Lockfile and Requirements
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types:
|
|
|
|
- labeled
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update-lockfile-and-requirements:
|
|
|
|
if: github.event.label.name == 'Update Lockfile and Requirements'
|
|
|
|
name: Update Lockfile and Requirements
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Python
|
2023-04-03 08:17:40 +00:00
|
|
|
uses: actions/setup-python@v3
|
2023-04-03 07:42:46 +00:00
|
|
|
with:
|
|
|
|
python-version: 3.11
|
|
|
|
|
|
|
|
- name: Install Poetry
|
|
|
|
run: |
|
|
|
|
pip install --upgrade pip
|
|
|
|
pip install poetry
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
rm -r poetry.lock
|
|
|
|
poetry install
|
|
|
|
|
|
|
|
- name: Update lockfile and requirements
|
|
|
|
run: |
|
|
|
|
poetry lock
|
2023-04-03 08:17:40 +00:00
|
|
|
poetry export --extras all --without-hashes --format=requirements.txt > requirements.txt
|
2023-04-03 07:42:46 +00:00
|
|
|
|
|
|
|
- name: Upload Lockfile and Requirements
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
poetry.lock
|
|
|
|
requirements.txt
|