Skip to content

Commit

Permalink
use pre-commit for linting in CI (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
LegrandNico authored Apr 18, 2023
1 parent 7781010 commit ad63020
Showing 1 changed file with 9 additions and 25 deletions.
34 changes: 9 additions & 25 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,16 @@ on:
branches:
- "*"
jobs:
test:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
name: Configure pip caching
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install isort==5.10.1 flake8 black==23.1.0 pydocstyle==6.3.0 mypy==1.1.1
- name: Run linting
run: |
flake8 ./pyhgf/
black ./pyhgf/
isort ./pyhgf/
pydocstyle pyhgf/. --ignore=D213,D100,D203,D104
mypy ./pyhgf/ --ignore-missing-imports
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run lint
uses: pre-commit/[email protected]

0 comments on commit ad63020

Please sign in to comment.