Skip to content

Upgrade to Python 3.11 #45

Upgrade to Python 3.11

Upgrade to Python 3.11 #45

Workflow file for this run

name: tests
on:
push:
branches: [ master, development ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install packages
run: |
python -m pip install --upgrade pip
pip install pytest
pip install ./
- name: Test with pytest
run: |
pytest tests