1
0
Fork 0

Bumped workflows to v6.19
Lua Library / Lua-Testing (push) Successful in 6s Details
Lua Library / Static-Analysis (push) Failing after 3s Details

This commit is contained in:
Jon Michael Aanes 2024-04-26 14:19:28 +02:00
parent dded7c5156
commit cdd7b6af09
6 changed files with 14 additions and 8 deletions

View File

@ -1,6 +0,0 @@
name: LÖVE/Lua Library
on: [push]
jobs:
Static-Analysis:
uses: jmaa/workflows/.gitea/workflows/lua.yaml@main

View File

@ -0,0 +1,8 @@
name: Lua Library
on: [push]
jobs:
Lua-Testing:
uses: jmaa/workflows/.gitea/workflows/lua-testing.yaml@v6.19
Static-Analysis:
uses: jmaa/workflows/.gitea/workflows/lua-static-analysis.yaml@v6.19

View File

@ -1,6 +1,6 @@
std = "max"
cache = true
include_files = {"src/**/*.lua", "content/**/*.lua", "*.luacheckrc"}
include_files = {"**/*.lua"}
exclude_files = {}
self = false
max_line_length=false

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Palette Swap
Utility library for creating palette swaps of LÖVE-based images.

View File

@ -1,3 +1,4 @@
--- Utility library for creating palette swaps of LÖVE-based images.
local palette_swap = {}
@ -178,4 +179,3 @@ end
-- Return
return palette_swap

1
test/init.lua Normal file
View File

@ -0,0 +1 @@
require 'init'