Skip to content

Merge pull request #7 from AITH-Courses/feature/talent-profile #31

Merge pull request #7 from AITH-Courses/feature/talent-profile

Merge pull request #7 from AITH-Courses/feature/talent-profile #31

Workflow file for this run

name: Linter Checking
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install poetry
poetry install --with dev
- name: Ruff linter
run: |
poetry run ruff check src