projector notebook added and projector code slightly modified to impr… #558
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: Testing and Coverage | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Testing and Coverage | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Installation | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
- name: Run tests and collect coverage | |
run: | | |
pip install codecov | |
pip install pytest-cov | |
pytest --cov=./ --cov-report=xml | |
codecov | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3.1.0 | |
with: | |
directory: ./coverage/reports/ | |
env_vars: OS,PYTHON | |
files: /home/runner/work/symmer/symmer/coverage.xml | |
flags: tests |