mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 05:31:01 +01:00
eb99a070ce
- Fix YAML nits per `yamllint` - Upgrade Go version to `1.19`
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
---
|
|
name: Go
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
# TODO: is it possible to DRY out these jobs? Aside from `runs-on`, they are
|
|
# identical.
|
|
# See: https://github.com/actions/runner/issues/1182
|
|
build-linux:
|
|
runs-on: [ubuntu-latest]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.19
|
|
- name: Set up Revive (linter)
|
|
run: go get -u github.com/boyter/scc github.com/mgechev/revive
|
|
env:
|
|
GO111MODULE: "off"
|
|
- name: Build
|
|
run: make build
|
|
- name: Test
|
|
run: make test
|
|
|
|
build-osx:
|
|
runs-on: [macos-latest]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.19
|
|
- name: Set up Revive (linter)
|
|
run: go get -u github.com/boyter/scc github.com/mgechev/revive
|
|
env:
|
|
GO111MODULE: "off"
|
|
- name: Build
|
|
run: make build
|
|
- name: Test
|
|
run: make test
|