numerous bug fixes, still pre-refactor #4
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: Generate Requirements | |
on: | |
push: | |
paths: | |
- 'pyproject.toml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 # Update to @v4 if available | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11.4' | |
- name: Install Poetry | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
- name: Generate requirements.txt | |
run: poetry export -f requirements.txt --output requirements.txt --without-hashes | |
- name: Upload requirements.txt as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: requirements | |
path: requirements.txt |