Skip to content

Drop skipped tests on deprecated methods #11

Drop skipped tests on deprecated methods

Drop skipped tests on deprecated methods #11

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2019-2025 Aibolit
# SPDX-License-Identifier: MIT
---
name: ruff
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
name: Run ruff linter
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install ruff
run: python -m pip install --upgrade pip && pip install ruff
- name: Run ruff linter
run: ruff check .