Bump sphinx-rtd-theme from 2.0.0 to 3.0.2 #375
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows GUI Tests | |
on: | |
push: | |
branches: | |
- "main" | |
- "[0-9]+.[0-9]+" | |
pull_request: | |
branches: | |
- "main" | |
- "[0-9]+.[0-9]+" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: [ "3.8", "3.12" ] | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | python | |
- name: Load cached venv | |
id: cached-pip-wheels | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache | |
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
run: $HOME/AppData/Roaming/Python/Scripts/poetry install --no-interaction | |
- name: Run tests with pytest | |
run: $HOME/AppData/Roaming/Python/Scripts/poetry run pytest ./tests/gui/text_gui.py |