-
Notifications
You must be signed in to change notification settings - Fork 13
64 lines (60 loc) · 1.57 KB
/
ci-go-test.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
55
56
57
58
59
60
61
62
63
64
# This workflow will test all Go projects in the repository
name: ci-go-test
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- "**/*.go"
- "**/go.mod"
- "**/testdata/**"
permissions:
contents: read
actions: write
jobs:
get-dirs:
if: github.event_name == 'pull_request'
name: search
runs-on: ubuntu-latest
outputs:
dirs: ${{ steps.get-dirs.outputs.dirs }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Search for go.mod files
id: get-dirs
run: >
echo "dirs=$(
find . -name 'go.mod' -exec dirname {} \; |
sed 's|^\./||' |
jq -Rsc 'split("\n")[:-1]'
)" >> ${GITHUB_OUTPUT}
go-test:
needs: get-dirs
name: test
runs-on: warp-ubuntu-latest-x64-4x
strategy:
matrix:
dir: ${{ fromJson(needs.get-dirs.outputs.dirs) }}
defaults:
run:
working-directory: ${{ matrix.dir }}
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23.4
cache-dependency-path: "${{ matrix.dir }}/go.sum"
- name: Run Unit Tests
run: |
go install github.com/jstemmer/go-junit-report/v2@latest
go test -v -race 2>&1 ./... | go-junit-report -set-exit-code -iocopy -out report.xml
- name: Generate Test Summary
if: always()
uses: test-summary/action@v2
with:
paths: "${{ matrix.dir }}/report.xml"