tcell/.github/workflows/windows.yml

27 lines
444 B
YAML
Raw Normal View History

2021-07-18 02:27:57 +08:00
name: windows
on: [push]
jobs:
build:
name: build
runs-on: [ windows-latest ]
steps:
2024-08-23 03:20:08 +08:00
- name: Check out code into the Go module directory
uses: actions/checkout@v4
2021-07-18 02:27:57 +08:00
- name: Set up Go
uses: actions/setup-go@v5
2021-07-18 02:27:57 +08:00
with:
go-version: 1.18
2021-07-18 02:27:57 +08:00
id: go
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test ./...