Skip to content

Update bedtools_intersector.py #2835

Update bedtools_intersector.py

Update bedtools_intersector.py #2835

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-20.04
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10.2'
- name: Install packages
run: pip install -r requirements-dev.txt
- name: Install pre-commit hooks
run: pre-commit install --install-hooks
- name: Run pre-commit
run: pre-commit run --all-files