Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add new workflow #2

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions .github/workflows/go.yml

This file was deleted.

79 changes: 79 additions & 0 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: OpenSource CI/CD

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- master
- main
- staging
- develop
pull_request:
branches:
- master
- main
- staging
- develop

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "1.21.4"

- name: Run build
run: go build .

lint:
needs: build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "1.21.4"

- name: Install linters
run: |
go install golang.org/x/lint/golint@latest
go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
go install github.com/client9/misspell/cmd/misspell@latest
go install github.com/gordonklaus/ineffassign@latest
# go install github.com/securego/gosec/cmd/gosec@latest

- name: Run golint
run: |
echo "Starting golint..."
golint ./...
echo "Completed golint"

- name: Run gocyclo
run: |
echo "Starting gocyclo..."
gocyclo -over 15 .
echo "Completed gocyclo"

- name: Run misspell
run: |
echo "Starting misspell..."
misspell -error .
echo "Completed misspell"

- name: Run ineffassign
run: |
echo "Starting ineffassign..."
ineffassign .
echo -e "\033[32mCompleted ineffassign\033[0m"

# - name: Run gosec
# run: gosec ./...
Loading