Skip to content

Bumped version to 4.4.1 and updated RELEASE-NOTES #29

Bumped version to 4.4.1 and updated RELEASE-NOTES

Bumped version to 4.4.1 and updated RELEASE-NOTES #29

Workflow file for this run

name: Testing
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox
- name: Archive code coverage (Unittest)
if: (matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12')
uses: actions/upload-artifact@v3
with:
name: code-coverage-report
path: htmlcov
- name: Archive code coverage (Regtest)
if: (matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12')
uses: actions/upload-artifact@v3
with:
name: code-coverage-report-regtest
path: htmlcov-regtest