Merge pull request #60 from anchore/warn-log-no-details #144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Static Analysis" | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
Static-Analysis: | |
strategy: | |
matrix: | |
go-version: ["1.20.x"] | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- uses: actions/checkout@v3 | |
- name: Restore bootstrap cache | |
id: bootstrap-cache | |
uses: actions/[email protected] | |
with: | |
path: | | |
~/go/pkg/mod | |
${{ github.workspace }}/.tmp | |
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}-${{ hashFiles('Makefile') }} | |
restore-keys: | | |
${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}- | |
${{ runner.os }}-go-${{ matrix.go-version }}- | |
- name: Bootstrap project dependencies | |
if: steps.bootstrap-cache.outputs.cache-hit != 'true' | |
run: make bootstrap | |
- name: Run static analysis | |
run: make static-analysis |