Skip to content

include blinds into max moves #14

include blinds into max moves

include blinds into max moves #14

Workflow file for this run

name: Python Poetry Test Workflow
on:
push:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install
- name: Run pytest tests
run: |
poetry run pytest
- name: Run pylint
run: |
poetry run pylint **/*.py