2025-01-23 17:10:32 +00:00
|
|
|
name: Build and Test API
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'api/**'
|
|
|
|
- '.gitea/workflows/test-api.yaml'
|
|
|
|
pull_request:
|
|
|
|
types: [opened, reopened, synchronize]
|
|
|
|
jobs:
|
|
|
|
Build-and-test-API:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Setup DLang
|
2025-01-23 17:18:47 +00:00
|
|
|
uses: dlang-community/setup-dlang@v2
|
2025-01-23 17:10:32 +00:00
|
|
|
with:
|
|
|
|
compiler: ldc-latest
|
|
|
|
- name: Build
|
|
|
|
working-directory: ./api
|
|
|
|
run: dub -q build --build=release
|