Skip to content

chore(deps-dev): Bump pytest from 7.3.2 to 7.4.0 (#75) #171

chore(deps-dev): Bump pytest from 7.3.2 to 7.4.0 (#75)

chore(deps-dev): Bump pytest from 7.3.2 to 7.4.0 (#75) #171

Workflow file for this run

### A CI workflow template that runs linting and python testing
name: Test tap-neon
on:
pull_request: {}
push:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
NOXSESSION: ${{ matrix.session }}-${{ matrix.python-version }}
FORCE_COLOR: "1"
strategy:
matrix:
include:
- {python-version: "3.10", session: "mypy"}
- {python-version: "3.11", session: "tests"}
- {python-version: "3.10", session: "tests"}
- {python-version: "3.9", session: "tests"}
- {python-version: "3.8", session: "tests"}
- {python-version: "3.7", session: "tests"}
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.6.1
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install pip
pip --version
- name: Install Poetry
run: |
pipx install poetry --python "python${{ matrix.python-version }}"
poetry --version
- name: Install Nox
run: |
pipx install nox
pipx inject nox nox-poetry
nox --version
- name: Run Nox
env:
TAP_NEON_API_KEY: ${{ secrets.TAP_NEON_API_KEY }}
run: |
nox