Skip to content

fix: prevent chrono action on structure already with chrono active #229

fix: prevent chrono action on structure already with chrono active

fix: prevent chrono action on structure already with chrono active #229

Workflow file for this run

name: Linting
on:
pull_request:
branches:
- main
workflow_call:
jobs:
Linting:
runs-on: ubuntu-latest
steps:
# check-out repo
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
# install poetry
- name: Install poetry
run: pipx install poetry==1.6.1
# set-up python with cache
- name: Setup Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'poetry'
# install requirements (including dev dependencies)
- name: Install requirements
run: poetry install --only lint --no-root
# run linters
- name: Run linters
run: |
set -o pipefail
poetry run make lint