Skip to content

Move to pyproject.toml, python=3.11, Ruff pre-commit #29

Move to pyproject.toml, python=3.11, Ruff pre-commit

Move to pyproject.toml, python=3.11, Ruff pre-commit #29

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@v2
- name: Setup conda
uses: s-weigand/setup-conda@v1
with:
update-conda: true
python-version: ${{ matrix.python-version }}
conda-channels: bioconda
- name: Install
run: |
conda env create -f environment.yml
pip install '.[dev]'
- name: Test
run: |
pytest -s --slow