Skip to content

支持交互式的命令行程序启动 #26

支持交互式的命令行程序启动

支持交互式的命令行程序启动 #26

Workflow file for this run

name: check
on: [push, pull_request]
jobs:
check:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
name: Build
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v1
with:
go-version: 1.17
- name: Check out source code
uses: actions/checkout@v1
- name: Build
run: go build .
- name: Test
run: go test -v ./...