blob: bbe531e5ac51f79317c0820bd7fda9a2e82dd7fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
on: [push, pull_request]
name: Test
jobs:
version-matrix:
strategy:
fail-fast: false
matrix:
go-version: [1.18.x, 1.19.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- 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
|