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

56 lines
1.4 KiB
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-02-09 16:19:58 +00:00
go-version: [ '1.19', '1.20', 1.x ]
2020-12-09 19:52:21 +00:00
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ matrix.go-version }}
2022-12-10 10:17:05 +00:00
uses: actions/setup-go@v3
2020-12-09 19:52:21 +00:00
with:
go-version: ${{ matrix.go-version }}
# 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
# https://github.com/marketplace/actions/cache
- name: Cache Go modules
uses: actions/cache@v3
2020-12-09 19:52:21 +00:00
with:
# In order:
# * Module download cache
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
2020-12-09 19:52:21 +00:00
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
2020-12-09 19:52:21 +00:00
key: ${{ runner.os }}-${{ matrix.go-version }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-${{ matrix.go-version }}-go-
- name: Test
run: go test -v -cover ./...
- name: Build
run: go build -v -ldflags "-s -w" -trimpath -o ./dist/lego ./cmd/lego/