Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v5

- name: luacheck
uses: lunarmodules/luacheck@v1

tests:
strategy:
matrix:
lua-version: ["5.1.5", "5.2.4", "5.3.6", "5.4.4"]
lua-version: ["5.1.5", "5.2.4", "5.3.6", "5.4.8"]
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v5

- name: install readline
run: sudo apt-get install -y libreadline-dev

- name: localua
run: |
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Copyright (C) 2012-2013 by Moodstocks SAS
Copyright (C) 2014-2022 by Pierre Chapuis
Copyright (C) since 2014 by Pierre Chapuis

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ http_digest.http = require "copas.http"
## Copyright

- Copyright (c) 2012-2013 Moodstocks SAS
- Copyright (c) 2014-2022 Pierre Chapuis
- Copyright (c) since 2014 Pierre Chapuis
2 changes: 1 addition & 1 deletion http-digest.test.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local http_digest = require "http-digest"
local json_decode
do -- Find a JSON parser
local ok, json = pcall(require, "cjson")
if not ok then ok, json = pcall(require, "json") end
if not ok then ok, json = pcall(require, "lunajson") end
json_decode = json.decode
assert(ok and json_decode, "no JSON parser found :(")
end
Expand Down
2 changes: 1 addition & 1 deletion rockspec/http-digest-scm-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ build = {

test_dependencies = {
"cwtest",
"luajson",
"lunajson",
"copas",
"luasocket >= 3.1", -- see https://github.com/lunarmodules/copas/issues
}
Expand Down