Skip to content

Merge pull request #161 from AI-SDC/pre-commit-ci-update-config #419

Merge pull request #161 from AI-SDC/pre-commit-ci-update-config

Merge pull request #161 from AI-SDC/pre-commit-ci-update-config #419

Workflow file for this run

---
name: lint
on:
push:
paths-ignore:
- '**.md'
- '**.cff'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint pytest pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: pylint
run: |
pylint -v --recursive=True acro test --fail-under 10
...