generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 4
106 lines (97 loc) · 2.35 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: "test"
on:
pull_request:
push:
branches:
- main
- "releases/*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: action
- name: Set Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "action/go.mod"
- run: go version
- name: Set up the action
run: |
make all # build goveralls binaries
npm ci # install node modules
npm run build # build JavaScript
npm prune --production
working-directory: action
- name: archive
run: tar czvf action.tar.gz action
- uses: actions/upload-artifact@v4
with:
name: action
path: ./action.tar.gz
# run tests with Go that supports go.mod
test:
needs:
- build
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
- ubuntu-22.04
- ubuntu-20.04
- macos-14 # for arm64
- macos-13 # for x64
- macos-12
- windows-2022
- windows-2019
go:
- "1.11" # minumum version goveralls supports
- "oldstable"
- "stable"
exclude:
# Go 1.11 is not supported on Apple Silicon
- os: macos-14
go: "1.11"
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go version
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: action
- name: extract
run: tar xzvf action.tar.gz
- name: send coverage
uses: ./action/
with:
parallel: true
flag-name: ${{ runner.os }}-Go-${{ matrix.go }}
shallow: true
finish:
needs:
- build
- test
if: always()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: action
- name: extract
run: tar xzvf action.tar.gz
- name: finalize parallel build
uses: ./action/
with:
parallel-finished: true
shallow: true