Skip to content

Allow setting back-up ANs for networking resilience #2631

Allow setting back-up ANs for networking resilience

Allow setting back-up ANs for networking resilience #2631

Workflow file for this run

name: CI
env:
GO_VERSION: "1.25"
on:
pull_request:
push:
branches:
- "main"
jobs:
test:
name: "Test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run CI
run: make ci
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
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.4
args: --timeout=10m