feat: PC-13028 Support Azure Monitor managed service for Prometheus in Direct #2044
Workflow file for this run
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: Checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check: | |
name: Run all checks for static analysis | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- name: Set up prerequisites - node and yarn | |
uses: actions/setup-node@v4 | |
- name: Set up yarn cache | |
id: yarn-cache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.yarn-cache.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Run spell and markdown checkers | |
run: make check/spell check/trailing check/markdown | |
- name: Check generated code | |
run: make check/generate | |
- name: Check formatting | |
run: make check/format | |
- name: Run go vet | |
run: make check/vet | |
- name: Run golangci-lint | |
run: make check/lint | |
- name: Run Gosec Security Scanner | |
run: make check/gosec |