37 lines
853 B
YAML
37 lines
853 B
YAML
on: [push, pull_request]
|
|
name: Test
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
version-matrix:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
go-version: [1.19.x, 1.20.x, 1.21.x]
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Configure known hosts
|
|
if: matrix.platform != 'ubuntu-latest'
|
|
run: |
|
|
mkdir -p ~/.ssh
|
|
ssh-keyscan -H github.com > ~/.ssh/known_hosts
|
|
|
|
- name: Set Git config
|
|
run: |
|
|
git config --global user.email "gha@example.com"
|
|
git config --global user.name "GitHub Actions"
|
|
|
|
- name: Test
|
|
run: make test-coverage
|