fixup! GateIO: Abstract WSConnect for all assets #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: configs-versions-lint | |
on: [push, pull_request] | |
env: | |
GO_VERSION: 1.23.x | |
jobs: | |
lint: | |
name: config versions lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 |