Skip to content

Commit acb07c4

Browse files
committed
CI: Revert config versions lint workflow
1 parent ed62b8a commit acb07c4

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: configs-versions-lint
2+
on: [push, pull_request]
3+
env:
4+
GO_VERSION: 1.25.x
5+
jobs:
6+
lint:
7+
name: config versions lint
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v5
11+
- name: Setup Go
12+
uses: actions/setup-go@v5
13+
with:
14+
go-version: ${{ env.GO_VERSION }}
15+
- name: Check config versions are continuous
16+
run: go test ./config/versions/ -tags config_versions -run Continuity

.github/workflows/misc.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,7 @@ jobs:
8282
echo "No differences found in $file 🌞"
8383
fi
8484
done
85-
86-
- name: Check config versions are continuous
87-
run: go test ./config/versions/ -tags config_versions -run Continuity
88-
85+
8986
- name: Check Go modernise tool issues
9087
run: |
9188
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -test ./...

0 commit comments

Comments
 (0)