1
0

Compare commits

..

No commits in common. "aacb895f905879f7ef7b30f0b615a85e2522f784" and "73a5c5528bc631aa7571c2281a352fbe1811af61" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ jobs:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Run testing library - name: Run testing library
run: test -f test && luajit test/init.lua run: [ -f test ] && luajit test/init.lua
Static-Analysis: Static-Analysis:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

View File

@ -41,7 +41,7 @@
-- --
-- @author Jon Michael Aanes (jonjmaa@gmail.com) -- @author Jon Michael Aanes (jonjmaa@gmail.com)
local _VERSION = '0.5.6' local _VERSION = '0.5.5'
local lexer = assert(require((... and select('1', ...):match('.+%.') or '')..'lua_lang'), '[assert-gooder]: Could not load vital library: lua_lang') local lexer = assert(require((... and select('1', ...):match('.+%.') or '')..'lua_lang'), '[assert-gooder]: Could not load vital library: lua_lang')
local shunting_yard = assert(require((... and select('1', ...):match('.+%.') or '')..'Parser'), '[assert-gooder]: Could not load vital library: Parser') local shunting_yard = assert(require((... and select('1', ...):match('.+%.') or '')..'Parser'), '[assert-gooder]: Could not load vital library: Parser')