add ci yml

This commit is contained in:
Pablo Martin 2025-03-18 13:41:40 +01:00
parent dd9bb8a11b
commit e424ed7581

30
.azure-pipelines.yml Normal file
View file

@ -0,0 +1,30 @@
trigger:
- master # Runs on each commit to master
pr:
- master # Runs on PRs targeting master
pool:
vmImage: ubuntu-latest
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.10.12'
- script: |
python -m pip install --upgrade pip
pip install -r requirements.txt
displayName: 'Install dependencies'
- script: |
dbt deps
displayName: 'Install dbt packages'
- script: |
dbt compile
displayName: 'Run dbt compile'
- script: |
dbt docs generate
displayName: 'Generate dbt docs'