Skip to content

add: init and update dependencies #4

add: init and update dependencies

add: init and update dependencies #4

Workflow file for this run

name: Lint code with ruff
on:
push:
branches:
- main
paths:
- "**/*.py"
pull_request:
branches:
- main
paths:
- "**/*.py"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Analysing the code with ruff
uses: astral-sh/ruff-action@v3
with:
args: "check"