From e87c6bb1c596c03a9144518961d4e1c7c57f3e08 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Wed, 15 Jan 2025 11:34:11 +0000 Subject: [PATCH] ci: only test with lua 5.1 locally --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45bd714..fe63142 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,13 +17,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - lua-version: [ - "5.1", - "5.2", - "5.3", - "5.4", - "luajit" - ] + lua-version: ${{ github.actor == 'nektos/act' && fromJSON('["5.1"]') || fromJSON('["5.1", "5.2", "5.3", "5.4", "luajit"]') }} steps: - uses: actions/checkout@v4 - uses: jkl1337/gh-actions-lua@v11