Skip to content

Drop 3.10 from CI

Drop 3.10 from CI #58

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.11"]
name: Python ${{ matrix.python-version }} (${{ matrix.os }})
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install pytest
python -m pip install .
git clone https://github.com/pha4ge/primer-schemes.git
- name: Test with pytest
run: |
pytest
env:
PRIMER_SCHEMES_PATH: "${{ github.workspace }}/primer-schemes"