Skip to content

Merge pull request #25 from kraken-tech/typing-hotfixes #61

Merge pull request #25 from kraken-tech/typing-hotfixes

Merge pull request #25 from kraken-tech/typing-hotfixes #61

Workflow file for this run

name: Linting
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-22.04
timeout-minutes: 3
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Clone the code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: make install
- name: Run linters
run: make lint