Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ commands:
parameters:
python-version:
type: string
default: "3.12"
default: "3.13"

jobs:
build:
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ name: "CodeQL"

on:
push:
branches: [ master, stable ]
branches: [ master, stable, feature-flake8-87 ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ stable ]
schedule:
- cron: '17 5 * * 1'

# Declare default permissions as read only.
permissions: read-all
permissions: {}

jobs:
analyze:
Expand Down Expand Up @@ -71,6 +71,13 @@ jobs:
#- run: |
# make bootstrap
# make release
- name: Flake8 Scan
uses: reactive-firewall/flake8-cq@v2 # v2.0
with: # optional arguments
config: '.flake8.ini'
match: '**/*.py'
publish-artifacts: false
if: ${{ success() }}

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