php-fpm-exporter/.github/workflows/test_pr.yml

90 lines
1.9 KiB
YAML
Raw Normal View History

name: Test PR
on:
pull_request_target:
workflow_dispatch:
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
uses: actions/setup-go@v4.1.0
2020-03-03 05:33:41 +00:00
with:
2022-02-08 21:56:44 +00:00
go-version: 1.17
2020-03-03 05:33:41 +00:00
id: go
2020-03-04 04:59:37 +00:00
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
2020-03-03 05:33:41 +00:00
- name: golangci-lint
uses: golangci/golangci-lint-action@v6.1.1
with:
2022-02-08 21:56:44 +00:00
version: v1.44
2020-03-03 10:59:20 +00:00
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v4.1.0
2020-03-03 10:59:20 +00:00
with:
2022-02-08 21:56:44 +00:00
go-version: 1.17
2020-03-03 10:59:20 +00:00
id: go
2020-03-04 04:59:37 +00:00
- name: Checkout
uses: actions/checkout@v3
with:
ref: "refs/pull/${{ github.event.number }}/merge"
2020-03-03 10:59:20 +00:00
- 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
image-scan:
name: Image Scan
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: "refs/pull/${{ github.event.number }}/merge"
- name: Setup Go
uses: actions/setup-go@v4.1.0
with:
2022-02-08 21:56:44 +00:00
go-version: 1.17
id: go
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4.3.0
with:
version: latest
2022-03-30 10:51:55 +00:00
args: release --rm-dist --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Scan image
uses: anchore/scan-action@v4.1.2
2022-02-16 21:04:28 +00:00
id: scan
with:
image: "hipages/php-fpm_exporter:latest"
2022-02-16 21:04:28 +00:00
acs-report-enable: true
fail-build: false
2022-02-16 21:04:28 +00:00
- name: Upload Anchore scan SARIF report
uses: github/codeql-action/upload-sarif@v2
2022-02-16 21:04:28 +00:00
with:
sarif_file: ${{ steps.scan.outputs.sarif }}