Skip to content

Upgraded python version to 3.12 #2

Upgraded python version to 3.12

Upgraded python version to 3.12 #2

Workflow file for this run

name: Automatic Test
# Specify which GitHub events will trigger a CI build
on: push
# Define a single job, build
jobs:
build:
# Specify an OS for the runner
runs-on: ubuntu-latest
#Define steps
steps:
# Firstly, checkout repo
- name: Checkout repository
uses: actions/checkout@v4
# Set up Python env
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
# Install dependencies
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install poetry
poetry install
# Test with pytest
- name: Run pytest
run: |
poetry run pytest