Skip to content

Bump version to 1.1.2 #21

Bump version to 1.1.2

Bump version to 1.1.2 #21

Workflow file for this run

name: Tests
on:
push:
branches:
- master
paths-ignore:
- README.md
- LICENSE
- CHANGELOG
- .gitignore
jobs:
linux:
name: Linux, Python ${{ matrix.python-version }}, Sphinx ${{ matrix.sphinx-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.9'
sphinx-version:
- '3'
- '4'
- '5'
steps:
- name: Cache dependencies
uses: actions/cache@v2
with:
key: ${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
path: |
~/.cache
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: ./ci.sh test "sphinx${SPHINX_VERSION}"
env:
SPHINX_VERSION: ${{ matrix.sphinx-version }}