teacher-tools/.gitea/workflows/test-api.yaml

21 lines
476 B
YAML
Raw Normal View History

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