Skip to content

Commit 3fe3544

Browse files
committed
Add pre-commit, replace GHA workflows, remove flake8 config
1 parent a218a97 commit 3fe3544

File tree

3 files changed

+21
-49
lines changed

3 files changed

+21
-49
lines changed

.flake8

-2
This file was deleted.

.github/workflows/build.yml

+2-47
Original file line numberDiff line numberDiff line change
@@ -15,57 +15,12 @@ on:
1515
- cron: '0 6 * * 1'
1616

1717
jobs:
18-
black:
19-
name: black
18+
pre-commit:
2019
runs-on: ubuntu-latest
2120
steps:
2221
- uses: actions/checkout@v4
2322
- uses: actions/setup-python@v4
24-
with:
25-
python-version: '3.11'
26-
- name: Setup
27-
run: pip install black
28-
- name: Lint with black
29-
run: black --check --diff .
30-
31-
flake8:
32-
name: flake8
33-
runs-on: ubuntu-latest
34-
steps:
35-
- uses: actions/checkout@v4
36-
- uses: actions/setup-python@v4
37-
with:
38-
python-version: '3.11'
39-
- name: Setup
40-
run: pip install flake8
41-
- name: Lint with flake8
42-
run: flake8
43-
44-
isort:
45-
name: isort
46-
runs-on: ubuntu-latest
47-
steps:
48-
- uses: actions/checkout@v4
49-
- uses: actions/setup-python@v4
50-
with:
51-
python-version: '3.11'
52-
- name: Setup
53-
run: pip install isort[colors]
54-
- name: Lint with isort
55-
run: isort --check --diff .
56-
57-
mypy:
58-
name: mypy
59-
runs-on: ubuntu-latest
60-
steps:
61-
- uses: actions/checkout@v4
62-
- uses: actions/setup-python@v4
63-
with:
64-
python-version: '3.11'
65-
- name: Setup
66-
run: pip install mypy pytest
67-
- name: Lint with mypy
68-
run: mypy .
23+
- uses: pre-commit/[email protected]
6924

7025
conda:
7126
name: Conda ${{ matrix.python-version }} - ${{ matrix.os }}

.pre-commit-config.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.4.0
4+
hooks:
5+
- id: check-yaml
6+
- id: end-of-file-fixer
7+
- id: trailing-whitespace
8+
- repo: https://github.com/psf/black
9+
rev: 23.9.1
10+
hooks:
11+
- id: black
12+
- repo: https://github.com/astral-sh/ruff-pre-commit
13+
rev: v0.0.291
14+
hooks:
15+
- id: ruff
16+
- repo: https://github.com/pre-commit/mirrors-mypy
17+
rev: v1.5.1
18+
hooks:
19+
- id: mypy

0 commit comments

Comments
 (0)