Skip to content

Initial commit

Initial commit #7

Workflow file for this run

name: bigwig-loader ci
on:
push:
branches:
- main
tags:
- v*.*.*
pull_request: {}
jobs:
# RUN MYPY STATIC TYPE ANALYSIS ON BIGWIG-LOADER SOURCE
typing:
name: mypy type analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Run mypy
run: |
mypy --python-version=3.10 bigwig_loader