From 95f8565cde3c46ec6814169f889154c92209688f Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Thu, 14 Nov 2024 15:05:09 -0500 Subject: [PATCH] feat: Adds initial CI --- .gitea/workflows/ci.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..6d704b5 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,14 @@ +--- +name: CI +on: + push: + pull_request: + +jobs: + test: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run Tests + run: make test