mirror of
https://github.com/gumyr/build123d.git
synced 2026-01-15 05:42:40 -08:00
14 lines
298 B
YAML
14 lines
298 B
YAML
name: pylint
|
|
|
|
on: [push, pull_request]
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: ./.github/actions/setup
|
|
with:
|
|
python-version: 3.10
|
|
|
|
- name: lint
|
|
run: pylint --rcfile=.pylintrc --fail-under=9.5 src/build123d
|