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

38 lines
782 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:
2024-03-20 19:30:35 +00:00
go-version: [ stable ]
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
2024-02-02 01:21:10 +00:00
uses: actions/checkout@v4
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 }}
2024-02-02 01:21:10 +00:00
uses: actions/setup-go@v5
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/