Files
panxiao81 2270e013f0
E2E Tests / Run on Ubuntu (pull_request) Failing after 2s
Lint / Run on Ubuntu (pull_request) Failing after 1m2s
Tests / Run on Ubuntu (pull_request) Failing after 1m3s
ci: route lint and tests to pod runners and e2e to vm
2026-09-16 17:46:15 +00:00

32 lines
638 B
YAML

name: Lint
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
lint:
permissions:
contents: read
name: Run on Ubuntu
runs-on: [self-hosted, pod]
steps:
- name: Clone the code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version-file: go.mod
- name: Check linter configuration
run: make lint-config
- name: Run linter
run: make lint