mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
882dcc7b41
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
117 lines
3.4 KiB
YAML
117 lines
3.4 KiB
YAML
name: Go
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
unit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: styfle/cancel-workflow-action@0.11.0
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.19.x'
|
|
- name: Cache Golang Packages
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-golang-${{ hashFiles('go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-golang-
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
- name: unit-test
|
|
id: unit-test
|
|
run: go test -tags=unit ./... -coverprofile cover.out
|
|
# run code coverage upload to code climate on main branch since PR branch will not have access to secret
|
|
- name: unit-test-code-climate-upload
|
|
if: ${{ (github.event_name != 'pull_request') || (github.event.pull_request.head.repo.full_name == github.repository) }}
|
|
uses: paambaati/codeclimate-action@v5
|
|
env:
|
|
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_REPORTER_ID }}
|
|
with:
|
|
coverageLocations: cover.out:gocov
|
|
# truncate package name from file paths in report
|
|
prefix: github.com/SAP/jenkins-library/
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.19.x'
|
|
- name: Cache Golang Packages
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-golang-format${{ hashFiles('go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-golang-format
|
|
${{ runner.os }}-golang-
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
- name: format
|
|
run: go fmt ./...
|
|
- name: verify
|
|
run: git diff --exit-code
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.19.x'
|
|
# action requires go@1.19
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
- name: staticcheck
|
|
uses: dominikh/staticcheck-action@v1.3.0
|
|
with:
|
|
cache-key: ${{ runner.os }}-golang-staticcheck
|
|
install-go: false
|
|
generate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.19.x'
|
|
- name: Cache Golang Packages
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-golang-generate${{ hashFiles('go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-golang-generate
|
|
${{ runner.os }}-golang-
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
- name: generate
|
|
run: go run pkg/generator/step-metadata.go
|
|
- name: verify
|
|
run: git diff --exit-code
|
|
dependencies:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.19.x'
|
|
- name: Cache Golang Packages
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-golang-dependencies${{ hashFiles('go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-golang-dependencies
|
|
${{ runner.os }}-golang-
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
- name: cleanup dependencies
|
|
run: go mod tidy
|
|
- name: verify
|
|
run: git diff --name-only --exit-code
|