generated from moul/golang-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
86 lines (85 loc) · 2.4 KB
/
ci.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
name: CI
on:
push:
tags:
- v*
branches:
- master
pull_request:
jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.7.0
- name: Build the Docker image
run: docker build . --file Dockerfile
golangci-lint:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.7.0
- name: lint
uses: golangci/golangci-lint-action@v3.6.0
with:
version: v1.28
github-token: ${{ secrets.GITHUB_TOKEN }}
# tests-on-windows:
# needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
# runs-on: windows-latest
# strategy:
# matrix:
# golang:
# #- 1.13
# - 1.14
# steps:
# - uses: actions/checkout@v2.4.0
# - name: Install Go
# uses: actions/setup-go@v2
# with:
# go-version: ${{ matrix.golang }}
# - name: Run tests on Windows
# run: make.exe unittest
# continue-on-error: true
# tests-on-mac:
# needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
# runs-on: macos-latest
# strategy:
# matrix:
# golang:
# - 1.14
# steps:
# - uses: actions/checkout@v2.4.0
# - name: Install Go
# uses: actions/setup-go@v2
# with:
# go-version: ${{ matrix.golang }}
# - uses: actions/cache@v2.1.3
# with:
# path: ~/go/pkg/mod
# key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
# restore-keys: |
# ${{ runner.os }}-go-${{ matrix.golang }}-
# - name: Run tests on Unix-like operating systems
# run: make unittest
tests-on-linux:
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
runs-on: ubuntu-latest
strategy:
matrix:
golang:
# - 1.13
- 1.14
steps:
- uses: actions/checkout@v2.7.0
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v3.3.1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.golang }}-
- name: Run tests on Unix-like operating systems
run: make unittest