Skip to content

Bump the maven group in /java with 2 updates #232

Bump the maven group in /java with 2 updates

Bump the maven group in /java with 2 updates #232

Workflow file for this run

name: go
on:
push:
branches:
- main
- release/*
pull_request:
merge_group:
release:
types:
- published
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' || github.ref_name != 'main' }}
jobs:
gofmt:
name: "check code format"
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v7
- uses: perses/github-actions@v0.12.0
- uses: ./.github/perses-ci/actions/setup_environment
with:
enable_go: true
enable_cue: true
cue_version: "v0.15.4"
- name: check format
run: make checkformat
- name: check go.mod
run: make checkunused
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v7
- uses: perses/github-actions@v0.12.0
- uses: ./.github/perses-ci/actions/setup_environment
with:
enable_go: true
enable_go_cache: false
enable_npm: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v9.3.0
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v2.12.2
args: --timeout 5m
test:
name: "test"
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v7
- uses: perses/github-actions@v0.12.0
- uses: ./.github/perses-ci/actions/setup_environment
with:
enable_go: true
- name: test
run: make go-test