mirror of
https://github.com/fjosw/pyerrors.git
synced 2026-08-04 11:31:21 +02:00
* [ci] Add free threaded python interpreter 3.14t to pytest action * [ci] Return to pre 0.16 ruff behaviour * [ci] Add back ruff pyflake checks and allow 3.14t to fail * [ci] undo pytest change, bump ruff runner version * [ci] Explicitly bump ruff action version
15 lines
255 B
YAML
15 lines
255 B
YAML
name: ruff
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
pull_request:
|
|
jobs:
|
|
ruff:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: astral-sh/ruff-action@v4.1.0
|
|
with:
|
|
src: "./pyerrors"
|