diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d2250d7..309db49 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,12 +9,11 @@ trigger: pool: Local steps: + - script: | - echo Building Code - go build ./ + bash ./misc/build.sh displayName: 'Build' - script: | - subjects=(parser lexer ast token evaluator object) - for subject in "${subjects[@]}"; do go test "./$subject"; done + bash ./misc/test.sh displayName: 'Test'