Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/test_repo_readiness.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def test_ci_runs_standalone_dummy_generation_workflow(self):
for python_version in ('"3.10"', '"3.11"', '"3.12"'):
with self.subTest(python_version=python_version):
self.assertIn(python_version, workflow)
self.assertIn("actions/checkout@v4", workflow)
self.assertIn("actions/setup-python@v5", workflow)
self.assertIn("actions/checkout@v7.0.1", workflow)
self.assertIn("actions/setup-python@v7.0.0", workflow)
self.assertIn("python-version: ${{ matrix.python-version }}", workflow)
self.assertIn("python -m pip install -e .", workflow)
self.assertIn("python-from-jse-generate --help", workflow)
Expand Down