-
Notifications
You must be signed in to change notification settings - Fork 270
40 lines (34 loc) · 1.1 KB
/
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
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
environment: ci
strategy:
fail-fast: false
matrix:
go-version: ['1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20']
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Test
env:
ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY_ID }}
ACCESS_KEY_SECRET: ${{ secrets.ACCESS_KEY_SECRET }}
REGION_ID: ${{ vars.REGION_ID }}
USER_ID: ${{ secrets.USER_ID }}
PUBLIC_KEY_ID: ${{ secrets.PUBLIC_KEY_ID }}
RSA_FILE_AES_KEY: ${{ secrets.RSA_FILE_AES_KEY }}
CONCURRENT_ID: "${{ github.run_number }}-${{ strategy.job-index }}"
run: |
go test -race -coverprofile=coverage.txt -covermode=atomic ./sdk/...
test -z $ACCESS_KEY_ID -a -z $ACCESS_KEY_SECRET || go test -v -timeout 120s ./integration/...
- name: Upload coverage
run: bash <(curl -s https://codecov.io/bash)