Skip to content

Rewrite ADaPT using new components + update ALFWorld example #49

Rewrite ADaPT using new components + update ALFWorld example

Rewrite ADaPT using new components + update ALFWorld example #49

Workflow file for this run

name: Style and typing checks
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install and configure Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install --no-interaction
- name: Lint with ruff
run: |
poetry run ruff check
- name: Check formatting with ruff
run: |
poetry run ruff format --check
- name: Check types with mypy
run: |
poetry run mypy .