Skip to content

Added replicability check #180

Added replicability check

Added replicability check #180

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest]
python: ['3.8', '3.9', '3.10']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: install dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install -e .[test,all]
- name: run tests
run: python3 -m pytest --cov=tlviz
- name: upload coverage to Codecov
if: ${{matrix.os == 'ubuntu-latest' && matrix.python == '3.10'}}
uses: codecov/codecov-action@v2
with:
verbose: true