Skip to content

update gh-action

update gh-action #24

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

Check failure on line 10 in .github/workflows/pylint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pylint.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
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')