http-parser.c

Small C library to parse HTTP requests
Log | Files | Refs | README | LICENSE

commit 82b75f001cc59ea29629c50fe816e3655807d931
parent f54e702ae0d7c2f22c632926e5e6bc162252f791
Author: finwo <finwo@pm.me>
Date:   Sun, 10 Nov 2019 21:51:20 +0100

Using github actions for checking the build

Diffstat:
M.github/workflows/cc.yml | 8++++----
MMakefile | 7++++---
2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/cc.yml b/.github/workflows/cc.yml @@ -9,11 +9,11 @@ jobs: steps: - uses: actions/checkout@v1 - - name: configure - run: ./configure + # - name: configure + # run: ./configure - name: make run: make - name: make check run: make check - - name: make distcheck - run: make distcheck + # - name: make distcheck + # run: make distcheck diff --git a/Makefile b/Makefile @@ -1,7 +1,8 @@ -.PHONY: test -test: http-parser-test - ./$< http-parser-test: test.c src/http-parser.c $(CC) -o $@ $^ + +.PHONY: check +check: http-parser-test + ./$<