Skip to content

Homework7: Yura Buzinau #8

Homework7: Yura Buzinau

Homework7: Yura Buzinau #8

Workflow file for this run

name: Ruff
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, edited, synchronize]
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Analysing the code with Ruff
run: |
ruff --output-format=github .