Skip to content

Fix comprehensive CI/CD pipeline issues and repository cleanup #174

Fix comprehensive CI/CD pipeline issues and repository cleanup

Fix comprehensive CI/CD pipeline issues and repository cleanup #174

Workflow file for this run

---
# Super-Linter
# This workflow runs GitHub's Super-Linter on push and pull requests
name: Super-Linter
on: # yamllint disable-line rule:truthy
push:
pull_request:
permissions: {}
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Super-linter
uses: super-linter/super-linter@v8.0.0 # x-release-please-version
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CREATE_LOG_FILE: 'false'
# Run only on changed files for efficiency
VALIDATE_ALL_CODEBASE: false
# Exclude problematic directories and files
FILTER_REGEX_EXCLUDE: '.*(.venv|.venv_ci|node_modules|__pycache__|\.git|\.pytest_cache|\.mypy_cache|build|dist|documentation-output|oss)/.*'
# Use inclusion approach instead of exclusion for cleaner config
# Only validate essential infrastructure files
VALIDATE_MARKDOWN: true
VALIDATE_YAML: true
VALIDATE_BASH: true
VALIDATE_DOCKERFILE_HADOLINT: true
VALIDATE_GITHUB_ACTIONS: true
# EDITORCONFIG validation now enabled and working
VALIDATE_EDITORCONFIG: true