mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Added historic tag checkout test
This commit is contained in:
parent
6dcdf794d7
commit
8c65fe0084
1 changed files with 7 additions and 0 deletions
7
.github/workflows/benchmark.yml
vendored
7
.github/workflows/benchmark.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue