Skip to content

v1.10: Bump version and update Changelog #6

v1.10: Bump version and update Changelog

v1.10: Bump version and update Changelog #6

Workflow file for this run

name: CI tests
on: [push, pull_request, workflow_dispatch]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install --upgrade setuptools tox
- name: Run tox
run: tox -e lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install --upgrade setuptools tox codecov
- name: Run tox
run: tox -e py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3