Skip to content

Implement board logic for moving pieces. #6

Implement board logic for moving pieces.

Implement board logic for moving pieces. #6

Workflow file for this run

name: Pytest
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Python Setup
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pytest
python3 -m pip install -e .
- name: Run tests with pytest
run: pytest ./royal_game/tests/