Summary
Jobs
test (ubuntu-latest, 5.4)
test (ubuntu-latest, 5.3)
test (ubuntu-latest, 5.2)
test (ubuntu-latest, 5.1)
test (ubuntu-latest, 4)
test (ubuntu-latest, 3.2)
test (ubuntu-latest, 3.1)
test (ubuntu-latest, 3)
test (ubuntu-latest, 2.5)
test (ubuntu-latest, 2.4)
test (ubuntu-latest, 2.2)
test (ubuntu-latest, 2.1)
test (ubuntu-latest, 1.1)
test (ubuntu-latest, 1)
test (windows-latest, 5.4)
test (windows-latest, 5.3)
test (windows-latest, 5.2)
test (windows-latest, 5.1)
test (windows-latest, 4)
test (windows-latest, 3.2)
test (windows-latest, 3.1)
test (windows-latest, 3)
test (windows-latest, 2.5)
test (windows-latest, 2.4)
test (windows-latest, 2.2)
test (windows-latest, 2.1)
test (windows-latest, 1.1)
test (windows-latest, 1)
test (macos-latest, 5.4)
test (macos-latest, 5.3)
test (macos-latest, 5.2)
test (macos-latest, 5.1)
test (macos-latest, 4)
test (macos-latest, 3.2)
test (macos-latest, 3.1)
test (macos-latest, 3)
test (macos-latest, 2.5)
test (macos-latest, 2.4)
test (macos-latest, 2.2)
test (macos-latest, 2.1)
test (macos-latest, 1.1)
test (macos-latest, 1)
test (macos-13, 5.4)
test (macos-13, 5.3)
test (macos-13, 5.2)
test (macos-13, 5.1)
test (macos-13, 4)
test (macos-13, 3.2)
test (macos-13, 3.1)
test (macos-13, 3)
test (macos-13, 2.5)
test (macos-13, 2.4)
test (macos-13, 2.2)
test (macos-13, 2.1)
test (macos-13, 1.1)
test (macos-13, 1)
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lua
on:
push:
paths:
- 'lua/**'
- '!lua/README.rst'
schedule:
- cron: "0 0 1 * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
- macos-13
version:
- 5.4
- 5.3
- 5.2
- 5.1
- 4.0
- 3.2
- 3.1
- 3.0
- 2.5
- 2.4
- 2.2
- 2.1
- 1.1
- 1.0
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
if [ $RUNNER_OS = 'Linux' ]; then
sudo apt-get update
sudo apt-get install -y lua${{ matrix.version }}
elif [ $RUNNER_OS = 'macOS' ]; then
brew install lua@${{ matrix.version }}
elif [ $RUNNER_OS = 'Windows' ]; then
choco install lua --version ${{ matrix.version }}
fi
- run: make lu_test
You can’t perform that action at this time.