Skip to content

Commit 2694634

Browse files
[UPDATE] Merge branches 'dependabot/github_actions/dot-github/workflows/master/actions/checkout-5' and 'feature-flake8-87'
* dependabot/github_actions/dot-github/workflows/master/actions/checkout-5: [UPDATE] Version bump for GHA checkout from v4 to v5 [UPDATE] (deps): Bump actions/checkout from 4 to 5 in /.github/workflows * feature-flake8-87: [STYLE] Minor improvement for code style [STYLE] Suppressed some minor noisy linter alerts. [PATCH] fixup for PR #89 regressions and linting [PATCH] Apply changes from review (- WIP PR #89 -) [UPDATE] Version bump for flake8-cq to v2.0 [UPDATE] version bump for flake8-cq [FEATURE] add flak8-cq to codeql-analysis.yml
2 parents 9de8d8f + 1d37669 commit 2694634

File tree

11 files changed

+1213
-254
lines changed

11 files changed

+1213
-254
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ commands:
3333
parameters:
3434
python-version:
3535
type: string
36-
default: "3.12"
36+
default: "3.13"
3737

3838
jobs:
3939
build:

.github/workflows/codeql-analysis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ name: "CodeQL"
1313

1414
on:
1515
push:
16-
branches: [ master, stable ]
16+
branches: [ master, stable, feature-flake8-87 ]
1717
pull_request:
1818
# The branches below must be a subset of the branches above
1919
branches: [ stable ]
2020
schedule:
2121
- cron: '17 5 * * 1'
2222

2323
# Declare default permissions as read only.
24-
permissions: read-all
24+
permissions: {}
2525

2626
jobs:
2727
analyze:
@@ -71,6 +71,13 @@ jobs:
7171
#- run: |
7272
# make bootstrap
7373
# make release
74+
- name: Flake8 Scan
75+
uses: reactive-firewall/flake8-cq@v2 # v2.0
76+
with: # optional arguments
77+
config: '.flake8.ini'
78+
match: '**/*.py'
79+
publish-artifacts: false
80+
if: ${{ success() }}
7481

7582
- name: Perform CodeQL Analysis
7683
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)