Skip to content

Add a smaller depth for stockfish, also add some randomness to make the computer move easier #22

Add a smaller depth for stockfish, also add some randomness to make the computer move easier

Add a smaller depth for stockfish, also add some randomness to make the computer move easier #22

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libasound2-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Install built package
run: |
pip install dist/*.tar.gz