Skip to content

Commit e4166b7

Browse files
committed
more CI lua vers
1 parent cea9b9f commit e4166b7

8 files changed

Lines changed: 78 additions & 42 deletions

File tree

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lua5.1
1+
name: lua5.1.5
22

33
on: [push, pull_request]
44

@@ -8,14 +8,15 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
lua_version: ["5.1"]
11+
lua_version: ["5.1.5"]
1212
operating_system: ["ubuntu-latest", "macos-latest", "windows-latest"]
1313
name: ${{matrix.operating_system}}-${{matrix.lua_version}}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- uses: ilammy/msvc-dev-cmd@v1
1717
- uses: leafo/gh-actions-lua@v12
1818
with:
1919
luaVersion: ${{matrix.lua_version}}
2020
- run: |
21+
lua -v
2122
lua ./develop/all.lua
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lua5.2
1+
name: lua5.2.4
22

33
on: [push, pull_request]
44

@@ -8,14 +8,15 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
lua_version: ["5.2"]
11+
lua_version: ["5.2.4"]
1212
operating_system: ["ubuntu-latest", "macos-latest", "windows-latest"]
1313
name: ${{matrix.operating_system}}-${{matrix.lua_version}}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- uses: ilammy/msvc-dev-cmd@v1
1717
- uses: leafo/gh-actions-lua@v12
1818
with:
1919
luaVersion: ${{matrix.lua_version}}
2020
- run: |
21+
lua -v
2122
lua ./develop/all.lua
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lua5.3
1+
name: lua5.3.6
22

33
on: [push, pull_request]
44

@@ -8,14 +8,15 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
lua_version: ["5.3"]
11+
lua_version: ["5.3.6"]
1212
operating_system: ["ubuntu-latest", "macos-latest", "windows-latest"]
1313
name: ${{matrix.operating_system}}-${{matrix.lua_version}}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- uses: ilammy/msvc-dev-cmd@v1
1717
- uses: leafo/gh-actions-lua@v12
1818
with:
1919
luaVersion: ${{matrix.lua_version}}
2020
- run: |
21+
lua -v
2122
lua ./develop/all.lua
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lua5.4
1+
name: lua5.4.8
22

33
on: [push, pull_request]
44

@@ -8,14 +8,15 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
lua_version: ["5.4"]
11+
lua_version: ["5.4.8"]
1212
operating_system: ["ubuntu-latest", "macos-latest", "windows-latest"]
1313
name: ${{matrix.operating_system}}-${{matrix.lua_version}}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- uses: ilammy/msvc-dev-cmd@v1
1717
- uses: leafo/gh-actions-lua@v12
1818
with:
1919
luaVersion: ${{matrix.lua_version}}
2020
- run: |
21+
lua -v
2122
lua ./develop/all.lua

.github/workflows/lua5.5.0.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: lua5.5.0
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ${{matrix.operating_system}}
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
lua_version: ["5.5.0"]
12+
operating_system: ["ubuntu-latest", "macos-latest", "windows-latest"]
13+
name: ${{matrix.operating_system}}-${{matrix.lua_version}}
14+
steps:
15+
- uses: actions/checkout@v6
16+
- uses: ilammy/msvc-dev-cmd@v1
17+
- uses: leafo/gh-actions-lua@v12
18+
with:
19+
luaVersion: ${{matrix.lua_version}}
20+
- run: |
21+
lua -v
22+
lua ./develop/all.lua

.github/workflows/luajit.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/luajit2.1.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: luajit2.1
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ${{matrix.operating_system}}
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
lua_version: ["luajit-2.1"]
12+
operating_system: ["ubuntu-latest", "macos-latest", "windows-latest"]
13+
name: ${{matrix.operating_system}}-${{matrix.lua_version}}
14+
steps:
15+
- uses: actions/checkout@v6
16+
- uses: ilammy/msvc-dev-cmd@v1
17+
- uses: leafo/gh-actions-lua@v12
18+
with:
19+
luaVersion: ${{matrix.lua_version}}
20+
- run: |
21+
lua -v
22+
lua ./develop/all.lua

README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,28 @@
22

33
> Evolved ECS (Entity-Component-System) for Lua
44
5-
[![lua5.1][badge.lua5.1]][lua5.1]
6-
[![lua5.4][badge.lua5.4]][lua5.4]
7-
[![luajit][badge.luajit]][luajit]
5+
[![lua5.1.5][badge.lua5.1.5]][lua5.1.5]
6+
[![lua5.2.4][badge.lua5.2.4]][lua5.2.4]
7+
[![lua5.3.6][badge.lua5.3.6]][lua5.3.6]
8+
[![lua5.4.8][badge.lua5.4.8]][lua5.4.8]
9+
[![lua5.5.0][badge.lua5.5.0]][lua5.5.0]
10+
[![luajit2.1][badge.luajit2.1]][luajit2.1]
811
[![license][badge.license]][license]
912

10-
[badge.lua5.1]: https://img.shields.io/github/actions/workflow/status/BlackMATov/evolved.lua/.github/workflows/lua5.1.yml?label=Lua%205.1
11-
[badge.lua5.4]: https://img.shields.io/github/actions/workflow/status/BlackMATov/evolved.lua/.github/workflows/lua5.4.yml?label=Lua%205.4
12-
[badge.luajit]: https://img.shields.io/github/actions/workflow/status/BlackMATov/evolved.lua/.github/workflows/luajit.yml?label=LuaJIT
13+
[badge.lua5.1.5]: https://img.shields.io/github/actions/workflow/status/BlackMATov/evolved.lua/.github/workflows/lua5.1.5.yml?label=Lua%205.1
14+
[badge.lua5.2.4]: https://img.shields.io/github/actions/workflow/status/BlackMATov/evolved.lua/.github/workflows/lua5.2.4.yml?label=Lua%205.2
15+
[badge.lua5.3.6]: https://img.shields.io/github/actions/workflow/status/BlackMATov/evolved.lua/.github/workflows/lua5.3.6.yml?label=Lua%205.3
16+
[badge.lua5.4.8]: https://img.shields.io/github/actions/workflow/status/BlackMATov/evolved.lua/.github/workflows/lua5.4.8.yml?label=Lua%205.4
17+
[badge.lua5.5.0]: https://img.shields.io/github/actions/workflow/status/BlackMATov/evolved.lua/.github/workflows/lua5.5.0.yml?label=Lua%205.5
18+
[badge.luajit2.1]: https://img.shields.io/github/actions/workflow/status/BlackMATov/evolved.lua/.github/workflows/luajit2.1.yml?label=LuaJIT%202.1
1319
[badge.license]: https://img.shields.io/badge/license-MIT-blue
1420

15-
[lua5.1]: https://github.com/BlackMATov/evolved.lua/actions?query=workflow%3Alua5.1
16-
[lua5.4]: https://github.com/BlackMATov/evolved.lua/actions?query=workflow%3Alua5.4
17-
[luajit]: https://github.com/BlackMATov/evolved.lua/actions?query=workflow%3Aluajit
21+
[lua5.1.5]: https://github.com/BlackMATov/evolved.lua/actions?query=workflow%3Alua5.1.5
22+
[lua5.2.4]: https://github.com/BlackMATov/evolved.lua/actions?query=workflow%3Alua5.2.4
23+
[lua5.3.6]: https://github.com/BlackMATov/evolved.lua/actions?query=workflow%3Alua5.3.6
24+
[lua5.4.8]: https://github.com/BlackMATov/evolved.lua/actions?query=workflow%3Alua5.4.8
25+
[lua5.5.0]: https://github.com/BlackMATov/evolved.lua/actions?query=workflow%3Alua5.5.0
26+
[luajit2.1]: https://github.com/BlackMATov/evolved.lua/actions?query=workflow%3Aluajit2.1
1827
[license]: https://en.wikipedia.org/wiki/MIT_License
1928

2029
[evolved]: https://github.com/BlackMATov/evolved.lua

0 commit comments

Comments
 (0)