-
-
Notifications
You must be signed in to change notification settings - Fork 8
84 lines (70 loc) · 1.71 KB
/
lint-test.yaml
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
name: Lint & Test
on:
push:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- 'revive.toml'
- '.github/workflows/lint-test.yaml'
pull_request:
types: [opened, edited, synchronize, reopened]
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- 'revive.toml'
- '.github/workflows/lint-test.yaml'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
check-latest: true
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Run Revive Action
uses: docker://morphy/revive-action:v2
with:
config: revive.toml
- name: Check formatting
run: test -z $(gofmt -l .) || (gofmt -l . && exit 1)
test:
name: Test
runs-on: ubuntu-latest
services:
mongo:
image: mongo:6.0
ports:
- 27017:27017
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
check-latest: true
- uses: actions/cache@v3
env:
cache-name: test
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: go-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
go-${{ env.cache-name }}-
- name: Get dependencies
run: go get -v -t -d ./...
- name: Run tests
env:
MONGO_URI: mongodb://127.0.0.1:27017/rest-api
MONGO_DB: rest-api
JWT_KEY: SKbVAbC4GqtRSnjiKCSH27Pu
JWT_AUDIENCE: testing-workflow
run: go test -v ./...