Skip to content

ci: run build-dependencies before lint #59

ci: run build-dependencies before lint

ci: run build-dependencies before lint #59

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: Build
run: make build
- name: Install Dependencies
run: make build-dependencies
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=3m
- name: Test
run: make test
- name: Vet
run: make lint