Skip to content

Update module github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring to v0.74.0 #380

Update module github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring to v0.74.0

Update module github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring to v0.74.0 #380

Workflow file for this run

name: ChartTest
on:
pull_request:
# only run when there are chart changes
paths:
- 'charts/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Determine Go version from go.mod
run: echo "GO_VERSION=$(go mod edit -json | jq -r .Go)" >> $GITHUB_ENV
working-directory: ./charts
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run chart tests
run: make chart-test