Skip to content

chore: fix GTP tests #39

chore: fix GTP tests

chore: fix GTP tests #39

Workflow file for this run

name: Check PR
on:
pull_request:
concurrency:
group: check-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Check
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check
uses: ./.github/actions/check
with:
python-version: ${{ matrix.python-version }}
envs: "${{ matrix.python-version == '3.13' && 'format-check, lint, spell-check, types, rich-only, ' || '' }}${{ matrix.python-version }}"
build:
name: Build
runs-on: ubuntu-latest
needs: [check]
steps:
- name: Checkout
uses: actions/checkout@v4
with: # required to get the correct scm version
fetch-depth: 0
fetch-tags: true
- name: Build
uses: ./.github/actions/build
with:
use-scm-version: true