Skip to content

updated python version #129

updated python version

updated python version #129

Workflow file for this run

name: Linting
on:
pull_request:
branches: main
push:
branches: main
jobs:
build:
name: linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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 check .