Added ci workflow.

This commit is contained in:
Andrew Lalis 2025-03-05 19:11:10 -05:00
parent 79e6912b56
commit 262947110f
1 changed files with 19 additions and 0 deletions

19
.gitea/workflows/ci.yaml Normal file
View File

@ -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