Skip to content

Commit 42b391f

Browse files
Feat: Add GitHub Actions Workflow for CI/CD (#21)
Add GitHub Actions Workflow for CI/CD (#21)
1 parent 8be7e5c commit 42b391f

File tree

10 files changed

+159
-0
lines changed

10 files changed

+159
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Setup Go and Dependencies
2+
description: 'Setup Go and Dependencies'
3+
4+
inputs:
5+
go-version-file:
6+
description: 'The path to the go.mod file'
7+
required: false
8+
default: 'go.mod'
9+
10+
runs:
11+
using: "composite"
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
- name: Setup Go
16+
uses: actions/setup-go@v5
17+
with:
18+
go-version-file: ${{ inputs.go-version-file }}
19+
20+
- name: Install Dependencies
21+
shell: bash
22+
run: go mod tidy

.github/workflows/build.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on: [workflow_call]
2+
defaults:
3+
run:
4+
shell: bash
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v4
12+
- name: Go and dependencies
13+
uses: ./.github/actions/setup-go-and-deps
14+
- name: build
15+
run: CGO_ENABLED=0 go build -o main .
16+
17+
- name: upload builded artifact
18+
uses: actions/upload-artifact@v4
19+
with:
20+
name: main-${{github.sha}}
21+
path: main

.github/workflows/dependencies.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on: [workflow_call]
2+
defaults:
3+
run:
4+
shell: bash
5+
6+
jobs:
7+
deps:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v4
12+
13+
- name: Go and dependencies
14+
uses: ./.github/actions/setup-go-and-deps

.github/workflows/deployment.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on: [workflow_call]
2+
defaults:
3+
run:
4+
shell: bash
5+
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: download builded artifact
11+
uses: actions/download-artifact@v4
12+
with:
13+
name: main-${{github.sha}}
14+
15+
- name: Deploy
16+
run: |
17+
echo "Dummy Deploy..."

.github/workflows/lint.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on: [workflow_call]
2+
defaults:
3+
run:
4+
shell: bash
5+
6+
jobs:
7+
lint:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: golang ci lint
12+
uses: golangci/golangci-lint-action@v6
13+
continue-on-error: true
14+
with:
15+
version: latest
16+
args: --timeout 10m
17+
18+

.github/workflows/main.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
run-name: main workflow
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- master
7+
- develop
8+
pull_request:
9+
branches:
10+
- main
11+
- master
12+
- develop
13+
defaults:
14+
run:
15+
shell: bash
16+
17+
jobs:
18+
pre:
19+
uses: ./.github/workflows/pre.yml
20+
deps:
21+
needs: pre
22+
uses: ./.github/workflows/dependencies.yml
23+
lint:
24+
needs: deps
25+
uses: ./.github/workflows/lint.yml
26+
test:
27+
needs: deps
28+
uses: ./.github/workflows/test.yml
29+
build:
30+
needs: [test, lint]
31+
uses: ./.github/workflows/build.yml
32+
deploy:
33+
needs: build
34+
uses: ./.github/workflows/deployment.yml

.github/workflows/pre.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on: [workflow_call]
2+
3+
defaults:
4+
run:
5+
shell: bash
6+
7+
jobs:
8+
pre:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: pre script
13+
run: |
14+
echo "Running pre script"

.github/workflows/test.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: [workflow_call]
2+
defaults:
3+
run:
4+
shell: bash
5+
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v4
12+
- name: Go and dependencies
13+
uses: ./.github/actions/setup-go-and-deps
14+
- name: test
15+
run: go test -v ./...

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ go-base
2121

2222
# Output of the go coverage tool, specifically when used with LiteIDE
2323
*.out
24+
25+
main

.tool-versions

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
golang 1.18
2+
golangci-lint 1.59.1

0 commit comments

Comments
 (0)