Skip to content

Fix bug where the player would bet after being dealt the cards #36

Fix bug where the player would bet after being dealt the cards

Fix bug where the player would bet after being dealt the cards #36

Workflow file for this run

# This workflow will install Python dependencies and run mypy
name: Mypy
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
mypy:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install mypy pytest
- name: Run mypy
run: mypy . --strict --exclude=docs