From fd6ba361c6f115e50c7a307b87cf6ea57b558fe9 Mon Sep 17 00:00:00 2001 From: Felipe Contreras Date: Mon, 13 Mar 2023 19:43:23 -0600 Subject: [PATCH] github: enable tests Signed-off-by: Felipe Contreras --- .github/workflows/main.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..169a97b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,12 @@ +on: + push: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install sharness + run: + git clone --depth 1 https://github.com/felipec/sharness.git t/sharness + - run: SHARNESS_TEST_SRCDIR=t/sharness t/main.t -- 2.11.4.GIT