Skip to content

Bump version: 0.3.4 → 0.4.0 #22

Bump version: 0.3.4 → 0.4.0

Bump version: 0.3.4 → 0.4.0 #22

Workflow file for this run

name: Python package
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install tox tox-gh-actions setuptools_scm
- name: Test with tox
run: tox
- name: Upload coverage data
uses: actions/upload-artifact@v2
with:
name: coverage-${{ matrix.python-version }}
path: .coverage*
retention-days: 1
report:
needs: build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Download artifacts
uses: actions/download-artifact@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install coverage
- name: Compile coverage data
run: |
mv coverage-*/.coverage* .
coverage combine
coverage html
coverage report
- name: Upload coverage report
uses: actions/upload-artifact@v2
with:
name: htmlcov
path: htmlcov
retention-days: 7