Skip to content

Trying to get tests to run under Python 3.11 #88

Trying to get tests to run under Python 3.11

Trying to get tests to run under Python 3.11 #88

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
workflow_dispatch: # allows manual execution
jobs:
SEDkit-CI:
name: Python - ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
max-parallel: 5
matrix:
os: ['macos-latest']
python-version: [ '3.11' ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Test with pytest
run: |
pytest