Skip to content

Homework7: Yura Buzinau #5

Homework7: Yura Buzinau

Homework7: Yura Buzinau #5

Workflow file for this run

name: Ruff
on: [pull_request, workflow_dispatch]
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 .