Skip to content

Require prometheus storage to init history and add option to explicitly not use history storage #5332

Require prometheus storage to init history and add option to explicitly not use history storage

Require prometheus storage to init history and add option to explicitly not use history storage #5332

Workflow file for this run

name: Tests
on:
- push
- pull_request
env:
GOPATH: ${{ github.workspace }}/go
permissions:
contents: read
jobs:
test-and-verify:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.21.3'
- uses: actions/checkout@v2
with:
path: ${{ env.GOPATH }}/src/k8s.io/autoscaler
- name: Apt-get
run: sudo apt-get install libseccomp-dev -qq
- name: Prepare
working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler
run: hack/install-verify-tools.sh
env:
GO111MODULE: auto
- name: Verify
working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler
run: hack/verify-all.sh -v
env:
GO111MODULE: auto
- name: Test
working-directory: ${{ env.GOPATH }}/src/k8s.io/autoscaler
run: hack/for-go-proj.sh test
env:
GO111MODULE: auto