Skip to content

Adjust Reflexion to new action execution classes and run Game of 24 e… #19

Adjust Reflexion to new action execution classes and run Game of 24 e…

Adjust Reflexion to new action execution classes and run Game of 24 e… #19

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 Black
run: |
poetry run black . --check
- name: Check import styling with isort
run: |
poetry run isort . --check
- name: Check types with mypy
run: |
poetry run mypy .