-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (41 loc) · 967 Bytes
/
ci.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
name: CI
on:
push:
branches: [ '*' ]
paths:
- '**.go'
- '.github/workflows/**.yml'
pull_request:
branches: [ main ]
workflow_call:
env:
CAM_GO_VERSION: 1.22.0
jobs:
lint:
name: lint files
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup GO
uses: actions/setup-go@v5
with:
go-version: ${{ env.CAM_GO_VERSION }}
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
args: --timeout 5m
build:
needs: [ lint ]
name: build go app
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ env.CAM_GO_VERSION }}
- name: Build go app
run: go build -o bin/app ./cmd/http-rest-api/...