Skip to content

v1.0.0rc1

v1.0.0rc1 #8

Workflow file for this run

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout github repo
uses: actions/checkout@v4
with:
lfs: true
- name: Black
uses: psf/black@stable
with:
options: --check --verbose
src: ./src
- name: isort
uses: isort/isort-action@master
with:
sort-paths: src/alt_eval
configuration: --settings-path pyproject.toml --check-only --diff