Skip to content

chore(deps): bump actions/checkout from 6 to 7 #163

chore(deps): bump actions/checkout from 6 to 7

chore(deps): bump actions/checkout from 6 to 7 #163

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.25'
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.4.0
working-directory: ./
only-new-issues: true
args: --timeout 20m
- name: Install deps
run: go mod download
- name: Run fmt
run: make fmt
- name: Run lint
run: make lint
- name: Run tests
run: make test