Skip to content

docs: update README.md #17

docs: update README.md

docs: update README.md #17

Workflow file for this run

name: MiniGo CI
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "main" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Set up Docker Compose
run: |
docker compose build
- name: Run tests
run: |
docker compose run --rm minigo \
/bin/bash -c "cd MiniGo/src && python main.py gen && ./test.sh all"