From 416e0b220fa038675861c31d787fb4abe01d8c81 Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Sun, 14 Jun 2026 13:35:48 -0400 Subject: [PATCH] Added separate job to build&test with ASDF. --- .gitea/workflows/ci.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 19ce754..062e163 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -17,3 +17,15 @@ jobs: compiler: ldc-latest - name: Build and Test run: dub -q test + build-and-test-with-asdf-library: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup DLang + uses: dlang-community/setup-dlang@v2 + with: + compiler: ldc-latest + - name: Add ASDF Library Dependencies + run: dub add asdf + - name: Build and Test + run: dub -q test