lego/.github/workflows/go-cross.yml

38 lines
793 B
YAML
Raw Normal View History

2020-12-09 19:52:21 +00:00
name: Go Matrix
2021-01-24 17:00:51 +00:00
on:
push:
branches:
- master
pull_request:
2020-12-09 19:52:21 +00:00
jobs:
cross:
name: Go
runs-on: ${{ matrix.os }}
env:
CGO_ENABLED: 0
strategy:
matrix:
2023-08-19 16:05:33 +00:00
go-version: [ stable, oldstable ]
2020-12-09 19:52:21 +00:00
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout code
2022-12-10 10:17:05 +00:00
uses: actions/checkout@v3
2020-12-09 19:52:21 +00:00
2023-08-19 16:05:33 +00:00
# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
2020-12-09 19:52:21 +00:00
with:
2023-08-19 16:05:33 +00:00
go-version: ${{ matrix.go-version }}
2020-12-09 19:52:21 +00:00
- name: Test
run: go test -v -cover ./...
- name: Build
run: go build -v -ldflags "-s -w" -trimpath -o ./dist/lego ./cmd/lego/