Skip to content

ci(deps-dev): pre-commit autoupdate (#254) #370

ci(deps-dev): pre-commit autoupdate (#254)

ci(deps-dev): pre-commit autoupdate (#254) #370

Workflow file for this run

name: Test tap-readthedocs
on:
push:
branches: [main]
pull_request: {}
jobs:
tests:
runs-on: ubuntu-latest
env:
FORCE_COLOR: "1"
NOXPYTHON: ${{ matrix.python-version }}
NOXSESSION: tests
SETUPTOOLS_USE_DISTUTILS: stdlib
PIP_CONSTRAINT: .github/workflows/constraints.txt
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install pip
pip --version
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install Nox
run: |
pipx install nox
pipx inject nox nox-poetry
nox --version
- name: Run Nox
env:
TAP_READTHEDOCS_TOKEN: ${{ secrets.TAP_READTHEDOCS_TOKEN }}
run: |
nox