From 262947110f5cda215c2bfc0f023d552860a601bb Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Wed, 5 Mar 2025 19:11:10 -0500 Subject: [PATCH] Added ci workflow. --- .gitea/workflows/ci.yaml | 19 +++++++++++++++++++ 1 file changed, 19 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..19ce754 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,19 @@ +name: Build and Test Module +on: + push: + paths: + - 'source/**' + - '.gitea/workflows/ci.yaml' + pull_request: + types: [opened, reopened, synchronize] +jobs: + build-and-test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup DLang + uses: dlang-community/setup-dlang@v2 + with: + compiler: ldc-latest + - name: Build and Test + run: dub -q test