diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a48f01..1dcbdbd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,12 +10,12 @@ on: jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: fail-fast: false matrix: - luaVersion: ["5.3"] + luaVersion: ["5.4"] steps: - name: Checkout @@ -32,4 +32,4 @@ jobs: - name: Run unit tests run: | - LUA_PATH="./src/?.lua;./src/?/init.lua;./src/array/?.lua;;" lua test.lua + LUA_PATH="./src/?.lua;./src/?/init.lua;;$(luarocks path --lr-path)" lua test.lua diff --git a/README.md b/README.md index 47b1604..0f4813b 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,6 @@ A small library with useful methods to handle Lua's table when it's working like an Array.
For docs, see: https://evandrolg.github.io/array.lua/ -[![Build -Status](https://travis-ci.org/EvandroLG/array.lua.svg?branch=master)](https://travis-ci.org/EvandroLG/array.lua) - ## Installation To install array, run: ```sh diff --git a/src/array/init.lua b/src/array/init.lua index 020d3db..210c5bd 100644 --- a/src/array/init.lua +++ b/src/array/init.lua @@ -3,7 +3,7 @@ local utils = require('array.utils') local array array = { - __VERSION = '1.3.5', + __VERSION = '1.3.6', __DESCRIPTION = "A small library with useful methods to handle Lua's table when it's working like an Array", __LICENSE = [[ The MIT License (MIT) diff --git a/test.lua b/test.lua index d0fc2dc..e5b5a3f 100644 --- a/test.lua +++ b/test.lua @@ -2,7 +2,7 @@ local test = require 'simple_test' local array = require 'array' test('meta infos', function(a) - a.equal(array.__VERSION, '1.3.5') + a.equal(array.__VERSION, '1.3.6') a.equal(array.__DESCRIPTION, "A small library with useful methods to handle Lua's table when it's working like an Array") end)