Skip to content

chore: rename resolution to resolved #16

chore: rename resolution to resolved

chore: rename resolution to resolved #16

---
name: Build, test and lint
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build-test-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '^1.23.2'
- name: Install tools
run: |-
go install github.com/segmentio/[email protected]
go install mvdan.cc/[email protected]
go install github.com/securego/gosec/v2/cmd/[email protected]
go install github.com/mgechev/[email protected]
- name: Build
run: make build
- name: Lint
run: make lint
- name: Run tests
run: make test