Skip to content

refactor: change structure and fix lint warnings #12

refactor: change structure and fix lint warnings

refactor: change structure and fix lint warnings #12

Workflow file for this run

on:
pull_request:
push:
branches:
main
jobs:
configure:
strategy:
matrix:
go-version: [ '1.15.x', '1.23.x' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install deps
run: go mod tidy
- name: Test
run: make test
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.3