Skip to content

CI Coverage

CI Coverage #57

Workflow file for this run

name: CI Coverage
on:
push:
branches:
- trunk-merge/**
pull_request:
branches:
- main
schedule:
- cron: "0 0 1 * *"
jobs:
ci-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
environment-file: environment.yml
activate-environment: bigsmiles
- name: Run Pytest
shell: bash -l {0}
run: |
pip install .
pytest --cov --cov-fail-under=85