Skip to content

chore: Bump github/codeql-action from 3 to 4 #304

chore: Bump github/codeql-action from 3 to 4

chore: Bump github/codeql-action from 3 to 4 #304

Workflow file for this run

name: Tests
on:
pull_request:
merge_group:
jobs:
tests:
runs-on: ubuntu-latest
steps:
# Checkout should always be before setup-go to ensure caching is working
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Build binaries
run: make build
- name: Run unit tests
run: make test
- name: Run e2e tests
run: make e2e_test
generate:
runs-on: ubuntu-latest
steps:
# Checkout should always be before setup-go to ensure caching is working
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 1
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Generate
run: make generate