Skip to content

chore(ci): GOEXPERIMENT=jsonv2 #15

chore(ci): GOEXPERIMENT=jsonv2

chore(ci): GOEXPERIMENT=jsonv2 #15

Workflow file for this run

name: Run golangci-lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: Run golangci-lint
runs-on: ubuntu-latest
env:
GOEXPERIMENT: jsonv2
steps:
- name: Checkout code
uses: actions/checkout@v6.0.2
- name: Print All environment variables
run: env | sort
- name: Set up Go
uses: actions/setup-go@v6.3.0
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v9.2.0
with:
version: latest
- name: Run golangci-lint
run: golangci-lint run ./...