Skip to content

Fix comment

Fix comment #1584

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: src/github.com/${{ github.repository }} # The repo is cloned into /home/runner/work/babygo/babygo/src/github.com/DQNEO/babygo
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
- name: Test
run: GOPATH=${{ github.workspace }} make -C ${{ github.workspace }}/src/github.com/DQNEO/babygo test