Skip to content

Update download_stockfish.py to download the latest stockfish binary #17

Update download_stockfish.py to download the latest stockfish binary

Update download_stockfish.py to download the latest stockfish binary #17

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