Skip to content

docs: prepare the release notes for FREETEXT-TEXT migration #2107

docs: prepare the release notes for FREETEXT-TEXT migration

docs: prepare the release notes for FREETEXT-TEXT migration #2107

name: "StrictDoc on Linux"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "**" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [
"3.7", "3.12"
]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install minimal Python packages
run: |
pip install -r requirements.bootstrap.txt
- name: Run Lint tasks
run: |
invoke lint
- name: Run tests
run: |
invoke test