Skip to content

Update Python version to 3.10.5 #7

Update Python version to 3.10.5

Update Python version to 3.10.5 #7

Workflow file for this run

name: Pytest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10.5
uses: actions/setup-python@v3
with:
python-version: 3.10.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Add the current directory to the PYTHONPATH
run: |
export PYTHONPATH=$PYTHONPATH:$(pwd)
- name: Test the code with pytest
run: |
pytest tests