Skip to content

improving address handling #17

improving address handling

improving address handling #17

Workflow file for this run

name: Lint & Test
on:
push:
branches: [main,"go*"]
pull_request:
branches: ["*"]
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout Code
uses: actions/checkout@v3
- name: Configure git
run: git config --global url.https://[email protected]/.insteadOf https://github.com/
- name: Lint
run: make lint
- name: Test
run: make test
env:
GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
GO_VERSION: '1.21'