Skip to content

Merge pull request #742 from cybozu-go/bump-chart-v0.24.1 #2512

Merge pull request #742 from cybozu-go/bump-chart-v0.24.1

Merge pull request #742 from cybozu-go/bump-chart-v0.24.1 #2512

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
cache-version: 1
jobs:
build:
name: Build binaries
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- run: make release-build
test:
name: Small tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- run: make test
- run: make check-generate
- run: make envtest