Skip to content

Update CI to Python 3.10 #1539

Update CI to Python 3.10

Update CI to Python 3.10 #1539

Workflow file for this run

name: Lint
on:
push:
branches:
- dev
paths-ignore:
- '**.md'
- '**.yml'
- 'docs/**'
pull_request:
branches:
- dev
paths-ignore:
- '**.md'
- '**.yml'
- 'docs/**'
jobs:
ruff:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Ruff
uses: astral-sh/ruff-action@v1
with:
src: "./pythainlp"
args: check --verbose --line-length 79 --select C901