Skip to content

Update pylint.yml

Update pylint.yml #26

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: mamba-org/setup-micromamba@v1
- name: install dependencies
run: |
mamba update --all
mamba install freecad numpy scipy pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')