1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2026-06-20 01:19:23 +02:00

ensure test list is correct in CI

This commit is contained in:
Jesse Duffield
2023-04-14 20:21:55 +10:00
parent 82c54ed3d2
commit 8e4efddbf7
+4
View File
@@ -135,6 +135,10 @@ jobs:
# ensure our vendor directory matches up with our go modules
run: |
go mod vendor && git diff --exit-code || (echo "Unexpected change to vendor directory. Run 'go mod vendor' locally and commit the changes" && exit 1)
- name: Check Integration Tests List
# ensure our tests list matches up with our generator's output
run: |
go generate pkg/integration/tests/tests.go && git diff --exit-code || (echo "Unexpected change to tests list. Run 'go generate pkg/integration/tests/tests.go' locally and commit the changes" && exit 1)
lint:
runs-on: ubuntu-latest
env: