️2023 PyConIT (40bd33ed96a961e1ad6761485cfd3653160452c9) #16
Workflow file for this run
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: "2023 PyConIT generate galery.pdf" | |
run-name: "️2023 PyConIT (${{ github.sha }})" | |
on: | |
pull_request: | |
push: | |
branches: [ main, 2023-PyConIT* ] | |
jobs: | |
generate-pdf: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Python environment | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | |
pip install -r 2023_PyConIT/requirements.txt | |
- name: Run tests | |
shell: bash -el {0} | |
run: | |
pytest 2023_PyData_Berlin | |
- name: Generate PDF | |
shell: bash -el {0} | |
run: | |
python 2023_PyConIT/src/assemble_plots.py | |
- name: Archive PDF | |
uses: actions/upload-artifact@v3 | |
with: | |
name: galery.pdf | |
path: 2023_PyConIT/results/galery.pdf |