Skip to content

refactor: replace full-node flag with explicit node-mode config #2115

refactor: replace full-node flag with explicit node-mode config

refactor: replace full-node flag with explicit node-mode config #2115

Workflow file for this run

name: Go
on:
pull_request:
paths-ignore:
- '**/*.md'
branches:
- '**'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v6
with:
cache: false
go-version-file: go.mod
- name: Commit linting
uses: wagoid/commitlint-github-action@v5
with:
configFile: commitlint.config.js
- name: Lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.11.3
args: --timeout 10m
skip-cache: true
- name: Vet
run: make vet
- name: Whitespace check
run: make check-whitespace
- name: go mod tidy check
uses: katexochen/go-tidy-check@v2
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Setup Go
if: matrix.os == 'ubuntu-latest'
uses: actions/setup-go@v6
with:
cache: false
go-version-file: go.mod
- name: Setup Go
if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest'
uses: actions/setup-go@v6
with:
cache: true
go-version-file: go.mod
- name: Set git to use LF
# make sure that line endings are not converted on windows
# as gofmt linter will report that they need to be changed
run: git config --global core.autocrlf false
- name: Build
run: make build
- name: Test
run: make test