Prepare release 2.16.0 #453
Workflow file for this run
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: CI | |
on: [pull_request] | |
jobs: | |
validate: | |
name: Validate PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Run unit tests | |
run: make test | |
- name: Run functionality tests | |
run: make test-functionality | |
- name: Run audit flags tests | |
run: make test-audit | |
statics: | |
name: Static Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Get golangci | |
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.60.1 | |
- uses: pre-commit/[email protected] | |
test-build: | |
name: Test Image Build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
container: ghcr.io/kedacore/keda-tools:1.23.3 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
lfs: true | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Go modules cache | |
uses: actions/cache@v4 | |
with: | |
path: /go/pkg | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Test build | |
run: make docker-build |