Merge pull request #1619 from danforthcenter/morphology_prune_debug_b… #3640
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: builds | |
on: | |
push: | |
# Run when main is updated | |
branches: [ main ] | |
pull_request: | |
# Run on pull requests against main | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11'] | |
os: [ubuntu-latest] | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON: ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@main | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@main | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install test dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 pytest pytest-cov ipython | |
- name: Test and generate coverage report | |
# Run coverage analysis on pytest tests | |
run: | | |
pip install . | |
py.test --cov-report=xml --cov=./ | |
- name: Upload coverage to Deepsource | |
if: ${{ matrix.python-version == '3.11' }} | |
uses: deepsourcelabs/test-coverage-action@master | |
with: | |
key: python | |
coverage-file: coverage.xml | |
dsn: ${{ secrets.DEEPSOURCE_DSN }} | |
env: | |
DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }} |