Skip to content

Potential fix for code scanning alert no. 25: Incomplete string escaping or encoding #21

Potential fix for code scanning alert no. 25: Incomplete string escaping or encoding

Potential fix for code scanning alert no. 25: Incomplete string escaping or encoding #21

Workflow file for this run

permissions:
contents: read
name: Ruff Linter
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: |
ruff check .