Skip to content

CI Build

CI Build #21

Workflow file for this run

name: CI Build
on:
push:
schedule:
- cron: '0 4 1 * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
sudo apt-get install tabix
python -m pip install --upgrade pip
pip install .
make devdeps
- name: Style check
run: make style
- name: Test with pytest
run: make test