Skip to content

Mark 0.1.2 in pyproject.toml #255

Mark 0.1.2 in pyproject.toml

Mark 0.1.2 in pyproject.toml #255

Workflow file for this run

---
name: Linting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
name: Linting
steps:
- uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Lint
run: poetry run make lint