Skip to content

tests: fix name of GraalPy tests #972

tests: fix name of GraalPy tests

tests: fix name of GraalPy tests #972

Workflow file for this run

---
name: pre-commit
on:
push:
branches:
- master
- stable
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
PYWIKIBOT_TEST_RUNNING: 1
PYWIKIBOT_NO_USER_CONFIG: 2
jobs:
pre-commit:
timeout-minutes: 10
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
continue-on-error: ${{ matrix.experimental || false }}
strategy:
fail-fast: false
matrix:
python-version:
- '3.10'
- '3.13'
- '3.14'
os:
- windows-latest
- macOS-latest
include:
- python-version: '3.14'
os: ubuntu-latest
- python-version: 3.15-dev
steps:
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: ${{ endsWith(matrix.python-version, '-dev') }}
- name: checkout
uses: actions/checkout@v5
with:
submodules: true
- name: run pre-commit
uses: pre-commit/[email protected]
env:
SKIP: copyright
timeout-minutes: 5