chantools/.github/workflows/main.yml
Boris Nagaev 29bed90b19
multi: compile-time dependency of lnd to 0.19.0
Important notes.
 - channeldb was split to channeldb and graphdb
 - chanbackup.NewMultiFile got additional argument noBackupArchive, I pass false
 - Go updated to 1.23.6
 - golangci-lint updated to v1.64.5
2025-03-11 15:27:14 -03:00

53 lines
996 B
YAML

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.23.6
jobs:
########################
# lint code
########################
lint:
name: lint code
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: lint
run: make lint
########################
# run unit tests
########################
unit-test:
name: run unit tests
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '${{ env.GO_VERSION }}'
- name: run unit tests
run: make unit