Bumped workflows to v6.19
This commit is contained in:
parent
dded7c5156
commit
cdd7b6af09
|
@ -1,6 +0,0 @@
|
|||
name: LÖVE/Lua Library
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Static-Analysis:
|
||||
uses: jmaa/workflows/.gitea/workflows/lua.yaml@main
|
8
.gitea/workflows/lua-library.yaml
Normal file
8
.gitea/workflows/lua-library.yaml
Normal 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
|
|
@ -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
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Palette Swap
|
||||
|
||||
Utility library for creating palette swaps of LÖVE-based images.
|
2
init.lua
2
init.lua
|
@ -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
1
test/init.lua
Normal file
|
@ -0,0 +1 @@
|
|||
require 'init'
|
Loading…
Reference in New Issue
Block a user