Skip to content

v1.0.6

v1.0.6 #12

Workflow file for this run

name: pytest
on:
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: entropy-pooling-dev
environment-file: requirements.yml
- run: pytest --cov=entropy_pooling --cov-fail-under=100 --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}