-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (30 loc) · 980 Bytes
/
Makefile
File metadata and controls
45 lines (30 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
LUA_PATH := lua/?.lua;lua/?/init.lua;$(LUA_PATH)
export LUA_PATH
.PHONY: lint test test-pip test-npm test-go test-rust test-lua test-binary test-apt test-dotnet test-ruby test-elixir test-nix test-swift
lint:
stylua --check .
test: test-pip test-npm test-go test-rust test-lua test-binary test-apt test-dotnet test-ruby test-elixir test-nix test-swift
test-pip:
busted --lua nlua test/pip/*_spec.lua
test-npm:
busted --lua nlua test/npm/*_spec.lua
test-go:
busted --lua nlua test/go/*_spec.lua
test-rust:
busted --lua nlua test/rust/*_spec.lua
test-lua:
busted --lua nlua test/lua/*_spec.lua
test-binary:
busted --lua nlua test/binary/*_spec.lua
test-apt:
busted --lua nlua test/apt/*_spec.lua
test-dotnet:
busted --lua nlua test/dotnet/*_spec.lua
test-ruby:
busted --lua nlua test/ruby/*_spec.lua
test-elixir:
busted --lua nlua test/elixir/*_spec.lua
test-nix:
busted --lua nlua test/nix/*_spec.lua
test-swift:
busted --lua nlua test/swift/*_spec.lua