Skip to content

Statistics of percentiles and intervals #56

Statistics of percentiles and intervals

Statistics of percentiles and intervals #56

Workflow file for this run

name: Test
on:
pull_request: {}
push:
branches: main
tags: "*"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies with pipenv
run: |
pip install pipenv
pipenv install --deploy --dev
pipenv graph
- run: pipenv run isort --recursive --diff .
- run: pipenv run black --check .
- run: pipenv run flake8
- run: pipenv run mypy
- run: pipenv run pytest --cov --cov-fail-under=100
# docker-image:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Build docker image
# run: docker build . -t relistats:test
# - name: Smoke test docker image
# run: |
# docker run --rm relistats:test 10