Skip to content

Commit 0ca76e5

Browse files
committed
Update azure-pipelines.yml for Azure Pipelines
1 parent f10c184 commit 0ca76e5

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

azure-pipelines.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ trigger:
99
pool: Local
1010

1111
steps:
12-
- script: echo Building Code
13-
displayName: 'Run a one-line script'
12+
- script: |
13+
echo Building Code
14+
go build ./
15+
displayName: 'Build'
1416

1517
- script: |
16-
echo Add other tasks to build, test, and deploy your project.
17-
echo See https://aka.ms/yaml
18-
displayName: 'Run a multi-line script'
18+
subjects=(parser lexer ast token evaluator object)
19+
for subject in "${subjects[@]}"; do go test "./$subject"; done
20+
displayName: 'Test'

0 commit comments

Comments
 (0)