From 8c65fe0084a14e5fbff26b1004efcd345c158694 Mon Sep 17 00:00:00 2001 From: Allan Jeremy Date: Wed, 18 May 2022 13:14:57 +0300 Subject: [PATCH] Added historic tag checkout test --- .github/workflows/benchmark.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 3c98a2d6..dfef2b92 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -42,6 +42,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 + run: | + git checkout ${{ GITHUB_SHA }} + for historicTags in $(git rev-list --tags -n 9); do + git checkout $historicTags + echo "Checking out $historicTags" + git pull + done - name: Build Luau run: make config=release luau luau-analyze