Skip to content

Exclude tests from running as unit tests #16

Exclude tests from running as unit tests

Exclude tests from running as unit tests #16

Workflow file for this run

name: Vertical Pod Autoscaler
on:
push:
paths:
- 'vertical-pod-autoscaler/**'
- '!vertical-pod-autoscaler/**/*.md'
pull_request:
paths:
- 'vertical-pod-autoscaler/**'
- '!vertical-pod-autoscaler/**/*.md'
env:
GOPATH: ${{ github.workspace }}/go
permissions:
contents: read
checks: write
jobs:
verify:
name: verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
path: ${{ env.GOPATH }}/src/k8s.io/autoscaler
- name: Set up Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version-file: '${{ env.GOPATH}}/src/k8s.io/autoscaler/vertical-pod-autoscaler/go.mod'
cache-dependency-path: |
${{ env.GOPATH}}/src/k8s.io/autoscaler/vertical-pod-autoscaler/go.sum
- name: Verify
working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler/vertical-pod-autoscaler
run: hack/verify-all.sh -v
env:
GO111MODULE: auto