Skip to content

CI

CI #288

Workflow file for this run

name: "CI"
on:
pull_request:
push:
branches:
- name
schedule:
- cron: "0 7 * * *"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
defaults:
run:
shell: bash -l {0}
jobs:
tests:
runs-on: ${{ matrix.OS }}-latest
name: "tests"
strategy:
fail-fast: false
matrix:
os: ['ubuntu']
python-version:
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install -e .
name: "Install"
- run: python -m pip install pytest pytest-cov
name: "Install testing tools"
- run: pytest -v --cov=exorcist --cov-report=xml
name: "Run tests"
- name: codecov
if: ${{ github.repository == 'OpenFreeEnergy/exorcist'
&& github.event_name != 'schedule' }}
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
verbose: true