mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-24 07:26:47 +00:00
* linters: Add modernise tool check and fix issues * engine: Simplify exch.SetDefaults call and remove localWG * CI: Revert config versions lint workflow
16 lines
425 B
YAML
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 |