Skip to content

Minor

Minor #478

Workflow file for this run

name: filterBAM_ci
on: [push, pull_request]
jobs:
filterBAM_ci:
name: filterBAM_ci
runs-on: "ubuntu-latest"
if: "!contains(github.event.head_commit.message, '[skip_ci]')"
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: "3.9"
solver: "libmamba"
channels: conda-forge,bioconda,defaults
channel-priority: true
environment-file: environment.yml
activate-environment: filterBAM
- name: Lint with flake8
shell: bash -l {0}
run: |
pip install flake8
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Test with pytest
shell: bash -l {0}
run: |
pip install Cython 'ray>=0.8.7'
pip install -e .
pip install pytest pytest-cov pytest-dependency pytest-console-scripts
- name: Check filterBAM help message
shell: bash -l {0}
run: |
filterBAM --help