Remove dependence on parmed
#54
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: { branches: [ "main" ] } | |
pull_request: { branches: [ "main" ] } | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: condaforge/mambaforge:latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Run Tests | |
run: | | |
apt update && apt install -y git make rsh-client | |
make env | |
make lint | |
make test | |
make docs | |
- name: CodeCov | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
token: ${{ secrets.CODECOV_TOKEN }} |