Files
bubbletea/.github/workflows/build.yml
Christian Rocha 3daa9a991b Drop Go 1.11 from the build workflow
NB: golang/x/crypto or golang/x/sys seems to not be building on macOS anymore
2020-10-02 13:35:29 -04:00

27 lines
549 B
YAML

name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./...