Skip to content

CI

CI #86

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- "main"
tags:
- "v*.*.*"
schedule:
- cron: "0 0 * * *"
env:
PY_COLORS: 1
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Prepare the job environment.
uses: ./.github/workflows/prepare-action
- name: Lint code.
run: |
poetry run isort --check --diff .
poetry run black --check --diff .