Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: cicd
on:
push:
pull_request:
jobs:
code-scan:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install --no-cache-dir -U pip ruff
- name: Lint and security check with Ruff
run: ruff check
- name: Check code formatting with Ruff
run: ruff format --check