Skip to content

Commit 2825e6c

Browse files
committed
cleanup
1 parent 22f8be9 commit 2825e6c

File tree

8 files changed

+37
-37
lines changed

8 files changed

+37
-37
lines changed

.github/workflows/bandit.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: bandit
22

33
on:
4+
push:
5+
branches-ignore: [main]
46
pull_request:
57
branches: [main]
68

.github/workflows/black.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: black
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches-ignore: [main]
6+
pull_request:
7+
branches: [main]
48

59
permissions:
610
contents: read

.github/workflows/check-development-dependencies.yaml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/flake8.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: flake8
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches-ignore: [main]
6+
pull_request:
7+
branches: [main]
48

59
permissions:
610
contents: read

.github/workflows/isort.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: isort
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches-ignore: [main]
6+
pull_request:
7+
branches: [main]
48

59
permissions:
610
contents: read

.github/workflows/mypy.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: mypy
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches-ignore: [main]
6+
pull_request:
7+
branches: [main]
48

59
permissions:
610
contents: read

.github/workflows/pylint.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: pylint
22

3-
on: [push]
3+
on:
4+
push:
5+
branches-ignore: [main]
6+
pull_request:
7+
branches: [main]
48

59
permissions:
610
contents: read

checkstyle-suppressions.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0"?>
2+
3+
<!DOCTYPE suppressions PUBLIC
4+
"-//Puppy Crawl//DTD Suppressions 1.0//EN"
5+
"http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">
6+
7+
<suppressions>
8+
<suppress checks="LeftCurly" files="."/>
9+
<suppress checks="LineLength" files="."/>
10+
</suppressions>

0 commit comments

Comments
 (0)