Skip to content

Infura gas api client and cache #40

Infura gas api client and cache

Infura gas api client and cache #40

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@v4
with:
go-version: '1.21.x'
- 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: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59