Skip to content

Delete the brief/deliverables.md file #51

Delete the brief/deliverables.md file

Delete the brief/deliverables.md file #51

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Download Stockfish
run: python scripts/download_stockfish.py
- name: Run tests
run: poetry run pytest