Skip to content

patch: 前次提交补充,不要在build.sh中执行编译出的可执行文件,因为可能是为其他平台编译的 #549

patch: 前次提交补充,不要在build.sh中执行编译出的可执行文件,因为可能是为其他平台编译的

patch: 前次提交补充,不要在build.sh中执行编译出的可执行文件,因为可能是为其他平台编译的 #549

Workflow file for this run

name: Windows
on:
push:
pull_request:
jobs:
build:
strategy:
matrix:
go: ['1.18']
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build ./app/lalserver
- name: Test
run: echo "TODO(chef) Test on Windows"