Skip to content

allow for parsing of files with missing attenuation.h5 #83

allow for parsing of files with missing attenuation.h5

allow for parsing of files with missing attenuation.h5 #83

Workflow file for this run

name: CodeCov
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: "2"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Generate Report
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e .
pytest --cov=./ --cov-report=xml
coverage xml
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2