Skip to content

Fix problem with velib_python integration and cleanup #482

Fix problem with velib_python integration and cleanup

Fix problem with velib_python integration and cleanup #482

Workflow file for this run

name: "CodeChecks"
on:
push:
branches:
- '**'
# Run on changes in the etc folder
paths:
- etc/**
jobs:
analyse:
name: Analyze Using GitHub CodeQL
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.8.18"
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: python
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
- name: Execute black lint check
uses: psf/black@stable
- name: flake8 Lint
uses: py-actions/flake8@v2