Files
gocryptotrader/.github/workflows/config-versions-lint.yml
Adrian Gallagher d5b2cf1759 linters: Add modernise tool check and fix issues (#2012)
* linters: Add modernise tool check and fix issues

* engine: Simplify exch.SetDefaults call and remove localWG

* CI: Revert config versions lint workflow
2025-08-26 12:45:13 +10:00

16 lines
425 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