Skip to content

Fixed workflow

Fixed workflow #11

Workflow file for this run

name: Lint
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: [3.9, 3.11]
poetry-version: [1.3.1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Run linter
run: poetry run make lint