Skip to content

Fixing goth

Fixing goth #3365

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- master
- b0.*
pull_request:
branches:
- master
- b0.*
jobs:
test:
name: Run checks
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os:
- ubuntu-latest
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v8
- run: echo "ENABLE=1" >> $GITHUB_OUTPUT
if: ${{ matrix.os == 'ubuntu-latest' }}
name: Enable extended checks
id: extended-checks
- run: echo "ENABLE=1" >> $GITHUB_OUTPUT
if: ${{ matrix.os == 'ubuntu-latest' }}
name: Enable sphinx check
id: extended-checks-sphinx
- run: poetry install
if: ${{ !steps.extended-checks-sphinx.outputs.ENABLE }}
- run: poetry install -E docs
if: ${{ steps.extended-checks-sphinx.outputs.ENABLE }}
- run: poetry run poe tests_unit
- run: poetry run poe checks_codestyle
- run: poetry run poe checks_typing
if: ${{ steps.extended-checks.outputs.ENABLE }}
- run: poetry run poe sphinx -W
if: ${{ steps.extended-checks-sphinx.outputs.ENABLE }}