mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-18 13:08:28 +02:00
Revert "Merge pull request #1028 from starius/downgrade-deps"
This reverts commitb11c959bc8, reversing changes made to0a182ee308.
This commit is contained in:
parent
2b41fe2c7c
commit
e4f64ec9cc
15 changed files with 317 additions and 36 deletions
22
.github/workflows/main.yml
vendored
22
.github/workflows/main.yml
vendored
|
|
@ -20,7 +20,7 @@ env:
|
|||
|
||||
# If you change this value, please change it in the following files as well:
|
||||
# /Dockerfile
|
||||
GO_VERSION: 1.23.12
|
||||
GO_VERSION: 1.24.6
|
||||
|
||||
jobs:
|
||||
########################
|
||||
|
|
@ -103,6 +103,26 @@ jobs:
|
|||
- name: lint
|
||||
run: make lint
|
||||
|
||||
########################
|
||||
# Verify documentation
|
||||
########################
|
||||
docs-check:
|
||||
name: verify that auto-generated documentation is up-to-date
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: git checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: setup go ${{ env.GO_VERSION }}
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '~${{ env.GO_VERSION }}'
|
||||
|
||||
- name: check
|
||||
run: make docs-check
|
||||
|
||||
########################
|
||||
# run unit tests
|
||||
########################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue