Skip to content
Draft
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
23 changes: 21 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,16 @@ jobs:
matrix:
# Use a tag from https://github.com/git/git/tags
# Make sure to update `git-version` in the `run-tests` step as well.
git-version: ["v2.24.3", "v2.29.2", "v2.33.1", "v2.37.3"]
git-version: [
"v2.37.3", # Aug 2022
"v2.42.0", # Aug 2023
"v2.43.0",
"v2.44.0",
"v2.45.0",
"v2.46.2", # Sep 2024
# "v2.51.2", # Oct 2025
# "v2.54.0", # Apr 2026
]

steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -55,10 +64,20 @@ jobs:
run-tests:
runs-on: ubuntu-latest
needs: build-git
continue-on-error: true # see if we can get results from all git versions

strategy:
matrix:
git-version: ["v2.24.3", "v2.29.2", "v2.33.1", "v2.37.3"]
git-version: [
"v2.37.3", # Aug 2022
"v2.42.0", # Aug 2023
"v2.43.0",
"v2.44.0",
"v2.45.0",
"v2.46.2", # Sep 2024
# "v2.51.2", # Oct 2025
# "v2.54.0", # Apr 2026
]

steps:
- uses: actions/checkout@v6
Expand Down
Loading