Skip to content

update LiteCNN tests, and added QLiteCNN tests #4

update LiteCNN tests, and added QLiteCNN tests

update LiteCNN tests, and added QLiteCNN tests #4

Workflow file for this run

# SPDX-FileCopyrightText: 2025 ETH Zurich and University of Bologna
#
# SPDX-License-Identifier: Apache-2.0
---
name: CI • Lint & Licenses
"on":
push:
branches:
- "**"
tags:
- "v*.*.*"
pull_request:
workflow_dispatch:
jobs:
linting:
name: Run pre-commit
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit (all files)
run: |
# Show diffs on failure and run across the entire repository to ensure consistency
pre-commit run --show-diff-on-failure --all-files
- name: Show git status (debug)
if: ${{ always() }}
run: git status --porcelain || true