Skip to content

Implement Monte Carlo learning for RL agent #96

Implement Monte Carlo learning for RL agent

Implement Monte Carlo learning for RL agent #96

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
check-code-format:
runs-on: ubuntu-22.04
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update -q -y
sudo apt-get install -q -y clang-format
- name: Check code formatting
run: |
.ci/check-format.sh
build:
runs-on: ubuntu-22.04
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update -q -y
sudo apt-get install -q -y build-essential make
- name: default build
run: make
- name: mcts build
run: make mcts
- name: train build
run: make train
- name: rl build
run: make rl