Bumped version #40
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: code coverage | |
on: | |
- push | |
- pull_request | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Code Coverage | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@main | |
with: | |
python-version: '3.9' | |
- name: Install coverage | |
run: pip install coverage | |
- name: Install astroalign dependencies | |
run: pip install "numpy>=1.11" "scipy>=0.15" scikit-image sep | |
- name: Install test dependencies | |
run: pip install -r tests/requirements.txt | |
- name: Run coverage | |
run: | | |
python -m coverage run -m unittest -v | |
coverage xml --fail-under=80 -o coverage.xml | |
- name: Code Coverage Report | |
uses: irongut/[email protected] | |
with: | |
filename: coverage.xml | |
badge: true | |
fail_below_min: true | |
format: markdown | |
hide_branch_rate: false | |
hide_complexity: true | |
indicators: true | |
output: both | |
thresholds: '60 80' |