Skip to content

Commit 93c7c7e

Browse files
committed
Merge branch 'release/v1.8.1'
2 parents 2fee6af + 473edce commit 93c7c7e

File tree

3 files changed

+90
-15
lines changed

3 files changed

+90
-15
lines changed

.github/workflows/test.yml

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
on:
2+
push:
3+
pull_request:
4+
types: [synchronize]
5+
schedule:
6+
- cron: "0 0 1,11,21 * *"
7+
name: Test
8+
jobs:
9+
test:
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
go-version:
14+
- 1.7.x
15+
- 1.8.x
16+
- 1.9.x
17+
- 1.10.x
18+
- 1.11.x
19+
- 1.12.x
20+
- 1.13.x
21+
- 1.14.x
22+
- 1.15.x
23+
- 1.16.x
24+
- 1.17.x
25+
go-flags: [""]
26+
os: [ubuntu-latest, macos-latest, windows-latest]
27+
include:
28+
- go-version: 1.13.x
29+
os: ubuntu-latest
30+
go-flags: "-trimpath"
31+
- go-version: 1.13.x
32+
os: macos-latest
33+
go-flags: "-trimpath"
34+
- go-version: 1.13.x
35+
os: windows-latest
36+
go-flags: "-trimpath"
37+
- go-version: 1.14.x
38+
os: ubuntu-latest
39+
go-flags: "-trimpath"
40+
- go-version: 1.14.x
41+
os: macos-latest
42+
go-flags: "-trimpath"
43+
- go-version: 1.14.x
44+
os: windows-latest
45+
go-flags: "-trimpath"
46+
- go-version: 1.15.x
47+
os: ubuntu-latest
48+
go-flags: "-trimpath"
49+
- go-version: 1.15.x
50+
os: macos-latest
51+
go-flags: "-trimpath"
52+
- go-version: 1.15.x
53+
os: windows-latest
54+
go-flags: "-trimpath"
55+
- go-version: 1.16.x
56+
os: ubuntu-latest
57+
go-flags: "-trimpath"
58+
- go-version: 1.16.x
59+
os: macos-latest
60+
go-flags: "-trimpath"
61+
- go-version: 1.16.x
62+
os: windows-latest
63+
go-flags: "-trimpath"
64+
- go-version: 1.17.x
65+
os: ubuntu-latest
66+
go-flags: "-trimpath"
67+
- go-version: 1.17.x
68+
os: macos-latest
69+
go-flags: "-trimpath"
70+
- go-version: 1.17.x
71+
os: windows-latest
72+
go-flags: "-trimpath"
73+
runs-on: ${{ matrix.os }}
74+
steps:
75+
- name: Install Go
76+
uses: actions/setup-go@v2
77+
with:
78+
go-version: ${{ matrix.go-version }}
79+
- name: Checkout code
80+
uses: actions/checkout@v2
81+
with:
82+
path: "${{github.workspace}}/src/github.com/${{github.repository}}"
83+
- name: Test
84+
env:
85+
GOPATH: "${{github.workspace}}"
86+
GOFLAGS: ${{ matrix.go-flags }}
87+
working-directory: "${{github.workspace}}/src/github.com/${{github.repository}}"
88+
run: go test ./...

.travis.yml

-15
This file was deleted.

go.mod

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
module github.com/go-stack/stack
2+
3+
go 1.17

0 commit comments

Comments
 (0)