Skip to content

Commit 2825e6c

Browse files
committed
cleanup
1 parent 22f8be9 commit 2825e6c

8 files changed

+37
-37
lines changed

Diff for: .github/workflows/bandit.yaml

+2
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

Diff for: .github/workflows/black.yaml

+5-1
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

Diff for: .github/workflows/check-development-dependencies.yaml

-32
This file was deleted.

Diff for: .github/workflows/flake8.yaml

+5-1
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

Diff for: .github/workflows/isort.yaml

+5-1
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

Diff for: .github/workflows/mypy.yaml

+5-1
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

Diff for: .github/workflows/pylint.yaml

+5-1
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

Diff for: checkstyle-suppressions.xml

+10
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)