Skip to content

Remove ignored --max-fee flag #46

Remove ignored --max-fee flag

Remove ignored --max-fee flag #46

Workflow file for this run

name: PR Test and Lint
on:
pull_request: {}
workflow_dispatch: {}
permissions:
contents: read
# Needed for golangci-lint to annotate code in the PR
checks: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
run: make binary
- name: Test
run: make test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61.0