Files
gocryptotrader/.github/workflows/config-versions-lint.yml
dependabot[bot] 53a5c8e931 build(deps): Bump actions/setup-go from 5 to 6 (#2037)
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](https://github.com/actions/setup-go/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 16:20:05 +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@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: Check config versions are continuous
run: go test ./config/versions/ -tags config_versions -run Continuity