traefik-certs-dumper/.github/workflows/go-cross.yml
dependabot[bot] 20d34c6c0a
chore: bump github.com/traefik/traefik/v2 from 2.10.3 to 2.10.6 (#191)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
2023-12-05 19:54:28 +01:00

39 lines
761 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: [ '1.21', 1.x ]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout code
uses: actions/checkout@v3
# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -v -cover ./...
- name: Build
run: go build -v -ldflags "-s -w" -trimpath