mirror of
https://github.com/Ne0nd0g/merlin
synced 2026-06-08 11:59:20 +00:00
69 lines
1.6 KiB
YAML
69 lines
1.6 KiB
YAML
# This workflow will build a golang project
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
|
|
|
|
name: "Scan, Build, & Test: Development Work"
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
paths-ignore:
|
|
- '.github/**'
|
|
- 'data/**'
|
|
- 'docs/**'
|
|
- '.gitattributes'
|
|
- '.gitignore'
|
|
- '.gitmodules'
|
|
- 'LICENSE'
|
|
- 'README.MD'
|
|
pull_request:
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: 'Code Quality Scan & Build: Development Work'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
id: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.24'
|
|
|
|
- name: 'Build Merlin Server'
|
|
id: build
|
|
run: 'make distro'
|
|
|
|
- name: 'Test Merlin Server'
|
|
id: test
|
|
run: 'go test ./...'
|
|
|
|
- name: GoVulnCheck
|
|
id: govulncheck
|
|
uses: golang/govulncheck-action@v1
|
|
with:
|
|
go-version-input: '1.24'
|
|
go-package: './...'
|
|
|
|
- name: Gosec Security Scanner
|
|
id: gosec
|
|
uses: securego/gosec@master
|
|
with:
|
|
args: -exclude G115 ./...
|
|
|
|
- name: Go Report Card - Install
|
|
id: goreportcard_install
|
|
working-directory: /tmp
|
|
run: |
|
|
git clone https://github.com/gojp/goreportcard.git
|
|
cd goreportcard
|
|
make install
|
|
go install ./cmd/goreportcard-cli
|
|
|
|
- name: Go Report Card - Run
|
|
id: goreportcard_run
|
|
run: 'goreportcard-cli -v' # This renames the files in the ./rpc directory to *.grc.bak causing builds to fail
|