forked from andygrunwald/go-jira
-
Notifications
You must be signed in to change notification settings - Fork 1
91 lines (78 loc) · 2.13 KB
/
Copy pathtesting.yml
File metadata and controls
91 lines (78 loc) · 2.13 KB
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
name: Tests
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
schedule:
- cron: "5 1 * * *"
jobs:
unit-test:
name: Unit tests
strategy:
fail-fast: false
matrix:
go: [ '1.23', '1.24' ]
os: [ 'windows-latest', 'ubuntu-latest', 'macOS-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run Unit tests (Go ${{ matrix.go }})
run: make test
fmt:
name: go fmt
strategy:
fail-fast: false
matrix:
go-version: [ '1.23', '1.24' ]
os: [ 'windows-latest', 'ubuntu-latest', 'macOS-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run go fmt (Go ${{ matrix.go }})
if: runner.os != 'Windows'
run: diff -u <(echo -n) <(gofmt -d -s .)
vet:
name: go vet
strategy:
fail-fast: false
matrix:
go-version: [ '1.23', '1.24' ]
os: [ 'windows-latest', 'ubuntu-latest', 'macOS-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run go vet
run: make vet
staticcheck:
name: staticcheck
strategy:
fail-fast: false
matrix:
go-version: [ '1.23', '1.24' ]
os: [ 'windows-latest', 'ubuntu-latest', 'macOS-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run staticcheck (Go ${{ matrix.go }})
uses: dominikh/staticcheck-action@v1.4.0
with:
version: "2025.1.1"
install-go: false
cache-key: ${{ matrix.go-version }}-${{ matrix.os }}