Skip to content

Update pylint.yml

Update pylint.yml #25

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: "3.11"
- name: install dependencies
run: |
mamba install freecad numpy scipy pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')