Skip to content

Commit 4a5513b

Browse files
committed
add CI
1 parent 4e7d068 commit 4a5513b

File tree

5 files changed

+49
-34
lines changed

5 files changed

+49
-34
lines changed

.github/workflows/ci.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI
2+
on: push
3+
jobs:
4+
5+
luacheck:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: checkout
9+
uses: actions/checkout@v3
10+
11+
- name: luacheck
12+
uses: lunarmodules/luacheck@v1
13+
14+
tests:
15+
strategy:
16+
matrix:
17+
lua-version: ["5.1.5", "5.2.4", "5.3.6", "5.4.4"]
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: checkout
21+
uses: actions/checkout@v3
22+
23+
- name: localua
24+
run: |
25+
curl https://loadk.com/localua.sh -O
26+
chmod +x localua.sh
27+
./localua.sh .lua "${{ matrix.lua-version }}"
28+
29+
- name: run tests
30+
run: |
31+
./.lua/bin/luarocks test

.luacheckrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
std = "lua54"
2+
exclude_files = { ".lua/*" }

Makefile

-21
This file was deleted.

README.md

+4-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# http-digest
22

3+
![CI Status](https://github.com/catwell/lua-http-digest/actions/workflows/ci.yml/badge.svg?branch=master)
4+
35
## Presentation
46

57
Small implementation of HTTP Digest Authentication (client-side) in Lua
@@ -13,7 +15,7 @@ Only supports auth/MD5, no reuse of client nonce, pull requests welcome.
1315
- md5
1416

1517
Tests require [cwtest](https://github.com/catwell/cwtest), a JSON parser
16-
and the availability of [httpbin.org](http://httpbin.org).
18+
and the availability of [httpbingo.org](http://httpbingo.org).
1719

1820
## Usage
1921

@@ -23,23 +25,12 @@ generic interface are supported. Here is an example with the simple interface:
2325

2426
```lua
2527
local http_digest = require "http-digest"
26-
local url = "http://user:passwd@httpbin.org/digest-auth/auth/user/passwd"
28+
local url = "http://user:passwd@httpbingo.org/digest-auth/auth/user/passwd"
2729
local b, c, h = http_digest.request(url)
2830
```
2931

3032
See the tests for more.
3133

32-
## Note
33-
34-
If you get this error when running the tests, update LuaSocket:
35-
36-
variable 'PROXY' is not declared
37-
38-
You may need to use the SCM version to run them (see
39-
[this issue](https://github.com/diegonehab/luasocket/issues/110)).
40-
41-
This only impacts the tests, the code itself works with older versions as well.
42-
4334
## Copyright
4435

4536
- Copyright (c) 2012-2013 Moodstocks SAS

rockspec/http-digest-scm-1.rockspec

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
rockspec_format = "3.0"
2+
13
package = "http-digest"
24
version = "scm-1"
35

@@ -27,3 +29,13 @@ build = {
2729
install = { lua = { ["http-digest"] = "http-digest.lua" } },
2830
copy_directories = {},
2931
}
32+
33+
test_dependencies = {
34+
"cwtest",
35+
"luajson",
36+
}
37+
38+
test = {
39+
type = "command",
40+
script = "http-digest.test.lua",
41+
}

0 commit comments

Comments
 (0)