Skip to content

router: add AMP flag to the SendPaymentRequest #502

router: add AMP flag to the SendPaymentRequest

router: add AMP flag to the SendPaymentRequest #502

Workflow file for this run

name: CI
on:
push:
branches:
- "master"
pull_request:
branches:
- "*"
defaults:
run:
shell: bash
env:
# go needs absolute directories, using the $HOME variable doesn't work here.
GOCACHE: /home/runner/work/go/pkg/build
GOPATH: /home/runner/work/go
GO_VERSION: 1.19.x
jobs:
build:
name: build package, run linter
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
- name: go cache
uses: actions/cache@v1
with:
path: /home/runner/work/go
key: lndclient-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
lndclient-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-${{ hashFiles('**/go.sum') }}
lndclient-${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ github.job }}-
lndclient-${{ runner.os }}-go-${{ env.GO_VERSION }}-
lndclient-${{ runner.os }}-go-
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
- name: compile
run: make build
- name: lint
run: make lint
- name: unit-race
run: make unit-race