Skip to content

refactor: rename transaction to tx #25

refactor: rename transaction to tx

refactor: rename transaction to tx #25

name: Lint, Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
workflow_call:
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Install dependencies
run: go mod download
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59.1
args: --timeout=30m --config=.golangci.yml
- name: Run tests
run: make test