-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (78 loc) · 2.04 KB
/
api.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
name: Smriti API CI
on:
push:
branches:
- master
paths:
- api/**
- .github/workflows/api.yaml
pull_request:
branches:
- master
paths:
- api/**
- .github/workflows/api.yaml
release:
types: [published]
jobs:
ci:
name: Integration Check
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./api
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Setup Golang
uses: actions/setup-go@v5
with:
go-version: '^1.22'
- name: Go Version
run: go version
- name: Run Lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.59.1
working-directory: api
- name: Run Build
run: make build
- name: Run Test & Cover
run: make cover
- name: Publish Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: api
files: api/coverage.txt
publish:
if: ${{ (github.event_name == 'release' && github.event.action == 'published') || github.ref == 'refs/heads/master' }}
needs: ci
name: Publish Docker Image
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./api
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker Build and Push
uses: docker/build-push-action@v5
with:
context: api
file: ./api/Dockerfile
push: true
platforms: linux/amd64,linux/arm64/v8
build-args: |
GITSHA=${{ github.sha }}
VERSION=${ github.ref_name }}
tags: smritihq/api:${{ github.ref_name }}