Update Python, all dependencies, and improve SDK based on kernel-planckster's experience #17
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: Pytest | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.13' | |
cache: 'poetry' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install python3-dev libpq-dev # psycopg2 | |
python -m pip install --upgrade pip | |
poetry env use 3.13 | |
poetry install --no-root | |
- name: Run pytest | |
run: | | |
poetry run pytest -s |