mirror of
https://github.com/go-acme/lego.git
synced 2026-01-24 20:56:25 +00:00
33 lines
591 B
YAML
33 lines
591 B
YAML
name: Go Matrix
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
|
|
jobs:
|
|
|
|
cross:
|
|
name: Go
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
CGO_ENABLED: 0
|
|
|
|
strategy:
|
|
matrix:
|
|
go-version: [ oldstable, stable ]
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- uses: actions/setup-go@v6
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Test
|
|
run: go test -v -cover ./...
|
|
|
|
- name: Build
|
|
run: go build -v -ldflags "-s -w" -trimpath -o ./dist/lego ./cmd/lego/
|