Skip to content

Merge pull request #34 from Brunas/dependabot/github_actions/actions/… #46

Merge pull request #34 from Brunas/dependabot/github_actions/actions/…

Merge pull request #34 from Brunas/dependabot/github_actions/actions/… #46

Workflow file for this run

name: "Lint"
on:
push:
paths-ignore:
- "**/README.md"
- "**/CHANGELOG.md"
- "**/CONTRIBUTING.md"
- "**/requirements.txt"
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
ruff:
name: "Ruff"
runs-on: "ubuntu-latest"
steps:
- name: Checkout the repository
uses: "actions/[email protected]"
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.12"
cache: "pip"
- name: Install requirements
run: python -m pip install -r requirements.txt
- name: Run
run: python -m ruff check .