Skip to content

Fix ADaPT logic and extend action executor interface with reset method #25

Fix ADaPT logic and extend action executor interface with reset method

Fix ADaPT logic and extend action executor interface with reset method #25

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.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- 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 .