Skip to content

New Release

New Release #90

Workflow file for this run

name: 'PR: pytest-lsp'
on:
pull_request:
branches:
- develop
- release
paths:
- 'lib/pytest-lsp/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: lib/pytest-lsp/pyproject.toml
- run: |
python --version
python -m pip install --upgrade pip
python -m pip install --upgrade hatch towncrier
name: Setup Environment
- run: |
set -e
./scripts/make_release.py pytest-lsp
name: Set Version
- uses: hynek/build-and-inspect-python-package@v2
with:
path: lib/pytest-lsp
test:
name: "Python v${{ matrix.python-version }} -- ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
allow-prereleases: true
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: lib/pytest-lsp/pyproject.toml
- run: |
python --version
python -m pip install --upgrade pip
python -m pip install --upgrade hatch
name: Setup Environment
- run: |
cd lib/pytest-lsp
hatch test -i py=${{ matrix.python-version }}
shell: bash
name: Run Tests