* Update gocql version to v1.16.1 1. Update gocql to v1.16.1 2. Update golang to 1.25, since new gocql version requres it * Update golangci to 2.5.0 It is needed since 1.64.8 does not support golang 1.25. 1. Update golangci to 2.5.0 2. Migrate from golangci config v1 to v2 3. Integrate fieldaligment to golangci 4. Drop fieldaligment from Makefile 5. Address complaints
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
env:
|
|
# On CICD following error shows up:
|
|
# go: github.com/gocql/gocql@v1.7.0: GOPROXY list is not the empty string, but contains no entries
|
|
# This env variable is set to make it go away
|
|
# If at some point you see no error, feel free to remove it
|
|
GOPROXY: direct
|
|
# On CICD following error shows up:
|
|
# go: golang.org/x/tools/go/analysis/passes/fieldalignment/cmd/fieldalignment@v0.24.0: golang.org/x/tools@v0.24.0: verifying module: missing GOSUMDB
|
|
# This env variable makes it go away
|
|
# If at some point you see no error, feel free to remove it
|
|
GOSUMDB: off
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Git Checkout
|
|
uses: actions/checkout@v5
|
|
with:
|
|
fetch-depth: '0'
|
|
|
|
- name: Install Go 1.25
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: 1.25
|
|
|
|
- name: Cache Dependencies
|
|
uses: actions/cache@v4
|
|
id: gomod-cache
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('go.mod', 'cmd/schemagen/testdata/go.mod') }}
|
|
|
|
- name: Download Dependencies
|
|
run: git --version && make get-deps && make get-tools
|
|
|
|
- name: Lint
|
|
run: make check
|
|
|
|
- name: Test
|
|
run: make test
|