-
-
Notifications
You must be signed in to change notification settings - Fork 58
54 lines (48 loc) · 997 Bytes
/
test-go.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: test-go
on:
push:
branches:
- main
- renovate/**
paths:
- go/**
- testdata/**
- .github/**
pull_request:
branches:
- main
paths:
- go/**
- testdata/**
- .github/**
workflow_call:
jobs:
test-go:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
go: ['1.20.x', '1.21.x']
include:
# Integration tests don't work on Windows, reason unknown
# - os: windows-latest
# go: '1.21.x'
- os: macos-latest
go: '1.21.x'
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: lint
working-directory: go
run: gofmt -w .
- name: test
working-directory: go
run: go test --v ./...
- name: run acceptance tests
run: make acceptance
working-directory: go