We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eac921 commit 997d360Copy full SHA for 997d360
.github/workflows/ruff.yml
@@ -0,0 +1,15 @@
1
+name: ruff
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ - develop
7
+ pull_request:
8
+jobs:
9
+ ruff:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: astral-sh/ruff-action@v2
14
+ with:
15
+ src: "./pyerrors"
pyproject.toml
@@ -1,3 +1,6 @@
[build-system]
requires = ["setuptools >= 63.0.0", "wheel"]
build-backend = "setuptools.build_meta"
+
+[tool.ruff.lint]
+ignore = ["F403"]
0 commit comments