We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b85b39 commit bb31daeCopy full SHA for bb31dae
.github/workflows/deploy.yml
@@ -22,5 +22,13 @@ jobs:
22
- name: Install luaunit
23
run: sudo luarocks install luaunit
24
25
+ - name: Install Go
26
+ uses: actions/setup-go@v5
27
+ with:
28
+ go-version: '1.22'
29
+
30
- name: Run LuaJIT tests
31
run: make test
32
33
+ - name: Run Golang E2E tests
34
+ run: make test-e2e
Makefile
@@ -15,4 +15,7 @@ test:
15
echo "❌ Test failed: $$file (exit code: $$exit_code)"; \
16
exit $$exit_code; \
17
fi; \
18
- done
+ done
19
20
+test-e2e:
21
+ @go test -v ./...
go.mod
@@ -1,6 +1,6 @@
1
module github.com/tsuru/lua-resty-libjwt
2
3
-go 1.23.2
+go 1.22
4
5
require (
6
github.com/golang-jwt/jwt/v5 v5.2.1
0 commit comments