1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-23 09:15:11 +02:00
lego/.github/workflows/go-cross.yml

38 lines
782 B
YAML
Raw Normal View History

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