mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-29 23:16:51 +00:00
* build/linters: Bump Go to v1.25 and golangci-lint to v2.4.0 * refactor: Update TODO comments for net.Listen and net.DialTimeout; improve variable naming in websocket and exchange methods * refactor: Rename massageMissingData to backfillMissingData for clarity and update references in RSI and MFI calculations * fix: Correct typo in TODO comment for net.Listen in RPC server
17 lines
426 B
YAML
17 lines
426 B
YAML
name: configs-versions-lint
|
|
on: [push, pull_request]
|
|
env:
|
|
GO_VERSION: 1.25.x
|
|
jobs:
|
|
lint:
|
|
name: config versions lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
- name: Check config versions are continuous
|
|
run: go test ./config/versions/ -tags config_versions -run Continuity
|