Implement Columntype interfaces (#14) #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-2019 | |
env: | |
branch: Oct2020 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install choco packages | |
run: choco install --no-progress -y winflexbison unzip curl | |
- name: Get Golang | |
run: choco install golang | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
# For some reason, the command is different than on linux/macos | |
run: go test -short -v ./... | |