2020-03-11 00:54:39 +00:00
|
|
|
name: Test
|
2020-11-20 20:33:08 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- 'releases/*'
|
2020-03-21 03:55:18 +00:00
|
|
|
|
2020-03-03 05:33:41 +00:00
|
|
|
jobs:
|
|
|
|
|
2020-03-03 10:59:20 +00:00
|
|
|
lint:
|
2020-03-03 05:46:33 +00:00
|
|
|
name: Lint
|
2020-03-03 05:33:41 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
2020-03-04 04:59:37 +00:00
|
|
|
- name: Set up Go
|
2020-11-02 12:19:37 +00:00
|
|
|
uses: actions/setup-go@v2.1.3
|
2020-03-03 05:33:41 +00:00
|
|
|
with:
|
2020-03-03 10:47:07 +00:00
|
|
|
go-version: 1.14
|
2020-03-03 05:33:41 +00:00
|
|
|
id: go
|
|
|
|
|
2020-03-04 04:59:37 +00:00
|
|
|
- name: Checkout
|
2020-03-03 05:33:41 +00:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-11-22 00:15:40 +00:00
|
|
|
- name: golangci-lint
|
|
|
|
uses: golangci/golangci-lint-action@v2
|
|
|
|
with:
|
|
|
|
version: v1.32
|
2020-03-03 10:59:20 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
2020-11-22 00:15:40 +00:00
|
|
|
- name: Setup Go
|
2020-11-02 12:19:37 +00:00
|
|
|
uses: actions/setup-go@v2.1.3
|
2020-03-03 10:59:20 +00:00
|
|
|
with:
|
2020-11-22 00:15:40 +00:00
|
|
|
go-version: ^1.15.0
|
2020-03-03 10:59:20 +00:00
|
|
|
id: go
|
|
|
|
|
2020-03-04 04:59:37 +00:00
|
|
|
- name: Checkout
|
2020-03-03 10:59:20 +00:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Test
|
2020-03-11 12:47:36 +00:00
|
|
|
run: go test -coverprofile cover.out ./...
|
|
|
|
|
|
|
|
- name: SonarCloud Scan
|
|
|
|
uses: sonarsource/sonarcloud-github-action@master
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
2020-03-04 04:59:37 +00:00
|
|
|
|
2020-03-10 12:55:13 +00:00
|
|
|
image-scan:
|
|
|
|
name: Image Scan
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Unshallow
|
|
|
|
run: git fetch --prune --unshallow
|
|
|
|
|
2020-11-22 00:15:40 +00:00
|
|
|
- name: Setup Go
|
2020-11-02 12:19:37 +00:00
|
|
|
uses: actions/setup-go@v2.1.3
|
2020-03-10 12:55:13 +00:00
|
|
|
with:
|
2020-11-22 00:15:40 +00:00
|
|
|
go-version: ^1.15.0
|
2020-03-10 12:55:13 +00:00
|
|
|
id: go
|
|
|
|
|
|
|
|
- name: Run GoReleaser
|
2020-11-02 12:24:31 +00:00
|
|
|
uses: goreleaser/goreleaser-action@v2.2.1
|
2020-03-10 12:55:13 +00:00
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
args: release --rm-dist --skip-validate --skip-publish
|
|
|
|
key: ${{ secrets.YOUR_PRIVATE_KEY }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Scan image
|
2020-11-02 11:59:44 +00:00
|
|
|
uses: anchore/scan-action@v2
|
2020-03-10 12:55:13 +00:00
|
|
|
with:
|
2020-11-02 11:59:44 +00:00
|
|
|
image: "hipages/php-fpm_exporter:latest"
|
2020-03-10 12:55:13 +00:00
|
|
|
fail-build: true
|