Skip to content

ci1

ci1 #527

Workflow file for this run

# This file was originally generated by maturin v0.14.17
name: CI3
on:
push:
schedule:
- cron: '0 0 1 * *'
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test Python - Non-Windows
if: runner.os != 'Windows'
run: |
pip install virtualenv
virtualenv vEnv; source vEnv/bin/activate
python -m pip install --upgrade pip maturin
maturin develop
pip install -r requirements-min-dev.txt
pytest bed_reader/tests/test_opt_dep.py
echo "requirements"
pip install -r requirements.txt
echo "requirements-dev"
pip install -r requirements-dev.txt
pytest bed_reader