Skip to content

Bump version: 3.1.0 → 3.1.1 #107

Bump version: 3.1.0 → 3.1.1

Bump version: 3.1.0 → 3.1.1 #107

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
name: Running tests.
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", pypy3.7]
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 Poetry
uses: snok/install-poetry@v1
- name: Installing
run: poetry install --no-interaction
- name: Running tests
run: |
poetry run pytest --cov=flask_babel --cov-report=xml
- name: Building documentation
run: |
cd docs && poetry run make clean && poetry run make html