Skip to content

Update changelog

Update changelog #41

Workflow file for this run

# NB: this name is used in the status badge
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
schedule:
- cron: "0 5 * * 6" # 5:00 UTC every Saturday
jobs:
build:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-22.04
continue-on-error: ${{ matrix.optional }}
strategy:
matrix:
optional: [false]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
include:
- python-version: "2.7"
optional: true
- python-version: "pypy2.7"
optional: true
- python-version: "pypy3.8"
optional: true
- python-version: "pypy3.9"
optional: true
- python-version: "pypy3.10"
optional: true
steps:
- name: Git clone
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- name: Pip cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('tox.ini', 'setup.py') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U setuptools wheel
python -m pip install -U tox
- name: Run tests
run: tox -e py
lint:
name: ${{ matrix.toxenv }}
runs-on: ubuntu-22.04
continue-on-error: ${{ matrix.toxenv == 'coverage2' }}
strategy:
matrix:
toxenv:
- flake8
- coverage2
- coverage3
- check-python-versions
steps:
- name: Git clone
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "${{ env.toxenv == 'coverage2' && '2.7' || '3.9' }}"
- name: Pip cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.toxenv }}-${{ hashFiles('tox.ini') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.toxenv }}-
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U setuptools wheel
python -m pip install -U tox
- name: Run ${{ matrix.toxenv }}
run: python -m tox -e ${{ matrix.toxenv }}