Skip to content

Commit

Permalink
add workflow for golang code quality
Browse files Browse the repository at this point in the history
  • Loading branch information
CubicrootXYZ committed Aug 4, 2024
1 parent 277de74 commit 3db6b24
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/golang_quality.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
on:
workflow_call:
inputs:
docker_build_args:
required: false
type: string
docker_file_path:
required: false
default: "./"
type: string
image_name:
required: true
type: string
secrets:
dockerhub_user:
required: true
dockerhub_token:
required: true

jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: v1.22.5
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59
5 changes: 5 additions & 0 deletions .github/workflows/golang_quality_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
on: push

jobs:
golang_quality:
uses: ./.github/workflows/golang_quality.yaml
3 changes: 3 additions & 0 deletions tests/golang_quality/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module golang_quality

go 1.22.1
7 changes: 7 additions & 0 deletions tests/golang_quality/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "fmt"

func main() {
fmt.Println("I am used for testing CI workflows")
}

0 comments on commit 3db6b24

Please sign in to comment.