Skip to content

chore(deps): update dependency sqlalchemy to v2.0.36 #29

chore(deps): update dependency sqlalchemy to v2.0.36

chore(deps): update dependency sqlalchemy to v2.0.36 #29

name: Controller Flake8
on:
pull_request:
# Ignore PRs on branches specifically intended for other assets
branches-ignore:
- '*/guacamole-chart*'
- '*/guacamole-crds-chart*'
# Only consider PRs that change files for this asset, including ci scripts
paths:
- '.github/workflows/flake8.yaml'
- '.github/workflows/controller-container.yaml'
- 'containers/controller/**'
# Make sure all workflows that are "required checks" for a given
# branch protection rule have the same paths: and branches-ignore:
# filters. Otherwise, you can end up in a deadlock waiting on a
# required check that will never be executed.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
# This linting can be cancelled if there is a newer commit to lint
cancel-in-progress: true
jobs:
controller-flake8:
runs-on:
labels: [self-hosted, linux, x64]
group: light
steps:
- name: clone repo
uses: actions/checkout@v4
- name: install flake8
run: pip install flake8
- name: install flake8 annotations
uses: rbialon/flake8-annotations@v1
- name: run flake8
run: |
flake8 --config=".github/.flake8" containers/controller/src