extras: do not assume namespace in alerts #683
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: | |
tags: | |
- v* | |
branches: | |
- master | |
- v2 | |
pull_request: | |
jobs: | |
golangci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
args: --timeout=3m | |
pre-commit: | |
runs-on: ubuntu-22.04 | |
env: | |
# These hooks will run separately in github actions | |
SKIP: golangci-lint,check-docs | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go environment | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- uses: actions/setup-python@v5 | |
- name: Cache envtest assets | |
uses: actions/cache@v4 | |
with: | |
key: envtest-base | |
path: | | |
bin/k8s | |
- name: Run pre-commit checks on changes files | |
uses: pre-commit/action@v3.0.1 | |
compat-tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Cache envtest assets | |
uses: actions/cache@v4 | |
with: | |
key: envtest-compat | |
path: | | |
bin/k8s | |
- name: Run compat test | |
run: | | |
make compat-test |