From 4ea3cc3c47dde7d1f1d62687a68660f1725d4323 Mon Sep 17 00:00:00 2001 From: FourierTransformer Date: Mon, 22 Jul 2024 19:35:02 -0500 Subject: [PATCH] Update README.md added link to GitHub Actions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc8c944..413de9e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # lua-simdjson (WIP) -![Build Status](https://github.com/FourierTransformer/lua-simdjson/actions/workflows/ci.yml/badge.svg?branch=master) +[![Build Status](https://github.com/FourierTransformer/lua-simdjson/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/FourierTransformer/lua-simdjson/actions?query=branch%3Amaster) A basic lua binding to [simdjson](https://simdjson.org). The simdjson library is an incredibly fast JSON parser that uses SIMD instructions and fancy algorithms to parse JSON very quickly. It's been tested with LuaJIT 2.0/2.1 and Lua 5.1, 5.2, 5.3, and 5.4 on linux/osx. It has a general parsing mode and a lazy mode that uses a JSON pointer.