Skip to content

ci: fix 1ES pool label name #1602

ci: fix 1ES pool label name

ci: fix 1ES pool label name #1602

Workflow file for this run

name: lint-go
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_VERSION: '1.20'
jobs:
build:
runs-on: ubuntu-20.04
permissions:
contents: read
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run go vet
run: |
make vet
- name: Run golangci-lint
run: make lint