Skip to content

Update changelog for version 1.1.2 #223

Update changelog for version 1.1.2

Update changelog for version 1.1.2 #223

Workflow file for this run

# GitHub Actions workflow for testing and continuous integration.
#
# This file performs testing using tox and tox.ini to define and configure the test environments.
name: CI
on:
push:
branches:
- main # GitHub now defaults to 'main' as the name of the primary branch. Change this as needed.
# tags: # run CI if specific tags are pushed
pull_request:
# branches: # only build on PRs against 'main' if you need to further limit when CI is run.
# - main
jobs:
# Github Actions supports ubuntu, windows, and macos virtual environments:
# https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
ci_tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- name: Code style checks
os: ubuntu-latest
python: 3.x
toxenv: codestyle
- name: Python 3.10 with minimal dependencies
os: ubuntu-latest
python: '3.10'
toxenv: py310-test
- name: Python 3.11 with all optional dependencies and coverage checking
os: ubuntu-latest
python: '3.11'
toxenv: py311-test-alldeps-cov
- name: macOS - Python 3.11 with all optional dependencies
os: macos-latest
python: '3.11'
toxenv: py311-test-alldeps
- name: Windows - Python 3.11 with minimal dependencies
os: windows-latest
python: '3.11'
toxenv: py311-test
- name: Python 3.12 with all optional dependencies and pre-releases
os: ubuntu-latest
python: '3.12'
toxenv: py312-test-alldeps-predeps
- name: Python 3.10 with oldest supported version of all dependencies
os: ubuntu-22.04
python: '3.10'
toxenv: py310-test-oldestdeps
- name: Python 3.13 with latest dev versions of key dependencies
os: ubuntu-latest
python: '3.13'
toxenv: py313-test-devdeps
# - name: Test building of Sphinx docs
# os: ubuntu-latest
# python: 3.x
# toxenv: build_docs
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python }} on ${{ matrix.os }}
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: ${{ matrix.python }}
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Test with tox
run: |
tox -e ${{ matrix.toxenv }}
- name: Upload coverage to codecov
if: "contains(matrix.toxenv, '-cov')"
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
with:
file: ./coverage.xml