-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (88 loc) · 2.9 KB
/
docker.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: Build, Test, and Push Services
on:
push:
branches:
- dev
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.1'
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Run golangci-lint
run: golangci-lint run ./...
build-test-and-push:
runs-on: ubuntu-latest
needs:
- lint
steps:
# 1. Checkout repository
- name: Checkout code
uses: actions/checkout@v4
# 2. Set up Go
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.1'
# 3. Install dependencies
- name: Install Go dependencies
run: |
go mod tidy
go get ./...
go mod vendor
# 4. Run tests
- name: Run Go tests
run: |
go test -coverpkg=./... -coverprofile=cover ./... && cat cover | grep -v "mock" | grep -v "easyjson" | grep -v "proto" | grep -v "pb" | grep -v "grpc" > cover.out && go tool cover -func=cover.out
# 5. Login to DockerHub
- name: Login to DockerHub Registry
run: echo ${{secrets.DOCKERHUB_TOKEN}} | docker login -u ${{secrets.DOCKERHUB_USERNAME}} --password-stdin
# 6. Build ads_service
- name: Build and push ads_service
uses: docker/build-push-action@v4
with:
context: .
file: ./microservices/ads_service/Dockerfile
tags: ${{secrets.DOCKERHUB_USERNAME}}/ads_service:latest
push: true
# 7. Build auth_service
- name: Build and push auth_service
uses: docker/build-push-action@v4
with:
context: .
file: ./microservices/auth_service/Dockerfile
tags: ${{secrets.DOCKERHUB_USERNAME}}/auth_service:latest
push: true
# 8. Build city_service
- name: Build and push city_service
uses: docker/build-push-action@v4
with:
context: .
file: ./microservices/city_service/Dockerfile
tags: ${{secrets.DOCKERHUB_USERNAME}}/city_service:latest
push: true
# 9. Build migrator
- name: Build and push migrator
uses: docker/build-push-action@v4
with:
context: .
file: ./cmd/migrator/Dockerfile
tags: ${{secrets.DOCKERHUB_USERNAME}}/migrator:latest
push: true
# 10. Build backend (main service)
- name: Build and push backend
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
tags: ${{secrets.DOCKERHUB_USERNAME}}/backend:latest
push: true