Skip to content

agent/billing: Use autoscaling.neon.tech/billing-endpoint-id for events #1654

agent/billing: Use autoscaling.neon.tech/billing-endpoint-id for events

agent/billing: Use autoscaling.neon.tech/billing-endpoint-id for events #1654

Workflow file for this run

name: lints
on:
pull_request:
push:
branches:
- main
jobs:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- uses: golangci/golangci-lint-action@v3
with:
# Required: the version of golangci-lint is required and
# should be specified with patch version.
version: v1.52.2
args: --timeout 5m --fix
github-token: ${{ secrets.github_token }}
# caching issues, see: https://github.com/golangci/golangci-lint-action/issues/244#issuecomment-1052190775
skip-pkg-cache: true
skip-build-cache: true
check-go-mod-tidy:
name: check go mod tidy
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: go mod tidy
run: |
go mod tidy
- name: check diff
run: |
if ! (test -z "$(git ls-files --exclude-standard --others .)$(git diff .)"); then
git ls-files --exclude-standard --others .
git diff .
echo "ERROR: 'go mod tidy' modified the source tree."
exit 1
fi
manifests:
name: check generated manifests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: make manifests
run: |
make manifests
- name: check diff
run: |
if ! (test -z "$(git ls-files --exclude-standard --others .)$(git diff .)"); then
git ls-files --exclude-standard --others .
git diff .
echo "ERROR: 'make manifests' modified the source tree."
exit 1
fi
generated-go:
name: check generated go files
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: make generate
run: |
make generate
- name: check diff
run: |
if ! (test -z "$(git ls-files --exclude-standard --others .)$(git diff .)"); then
git ls-files --exclude-standard --others .
git diff .
echo "ERROR: 'make generate' modified the source tree."
exit 1
fi
codespell:
name: check spelling with codespell
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: codespell-project/actions-codespell@94259cd8be02ad2903ba34a22d9c13de21a74461 # v2.0
with:
check_hidden: true
skip: go.sum,*.patch # '*.patch' references cluster-autoscaler/ca.patch, but somehow skipping directly doesn't work...