diff --git a/.github/workflows/lua.yml b/.github/workflows/lua.yml index 03fe5a11..f09a8376 100644 --- a/.github/workflows/lua.yml +++ b/.github/workflows/lua.yml @@ -15,6 +15,7 @@ concurrency: jobs: test: strategy: + fail-fast: false matrix: os: - ubuntu-latest diff --git a/lua/test.lua b/lua/test.lua index 5a240440..e3b0b41b 100644 --- a/lua/test.lua +++ b/lua/test.lua @@ -6,7 +6,7 @@ local function load_problem(file_name) end local chunk = func() if type(chunk) ~= "table" or not chunk.solution then - error("File " .. file_name .. " must return a table with a 'solution' function") + error("File src/" .. file_name .. " must return a table with a 'solution' function") end return chunk.solution end