Skip to content

⬆️ Update python base image to 3.12 #16

⬆️ Update python base image to 3.12

⬆️ Update python base image to 3.12 #16

Workflow file for this run

name: PyTest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests with pytest
run: pytest --verbose