Skip to content

Bump version: 0.3.0 → 1.0.0 #37

Bump version: 0.3.0 → 1.0.0

Bump version: 0.3.0 → 1.0.0 #37

Workflow file for this run

# Copied almost verbatim from https://github.com/marketplace/actions/sphinx-build
name: pytest
on:
- push
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
python -m pytest --cov=data_dag --junitxml=pytest.xml --cov-report=term-missing:skip-covered tests | tee pytest-coverage.txt
- name: Pytest coverage comment
id: coverageComment
uses: MishaKav/pytest-coverage-comment@main
with:
pytest-coverage-path: ./pytest-coverage.txt
junitxml-path: ./pytest.xml