-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (54 loc) · 1.38 KB
/
main.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
name: CI
on: [push]
#env:
# DNS_HOST: docker
# SKIP_LDAP: true
# SKIP_MAIL: true
# SKIP_ORACLE: true
# SKIP_COMMIT: true
jobs:
test:
#runs-on: ubuntu-22.04
runs-on: ubuntu-latest
services:
docker:
image: docker:dind
options: --privileged
ports:
- 2375:2375
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
check-latest: true
- name: Install dependencies
run: |
go mod tidy
go mod vendor
- name: Test
env:
# GitHub copies the files with api, not as clone, check fails
# https://github.com/actions/checkout/issues/335
SKIP_COMMIT: true
run: go test -v ./... -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
lint:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
check-latest: true
cache: false
- uses: "golangci/golangci-lint-action@v6"
with:
version: "v1.60.1"
args: --timeout=10m
skip-cache: true