diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 562dbd3..8b82a70 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -31,6 +31,7 @@ strategy: python.version: '3.9' steps: +- checkout: self - task: UsePythonVersion@0 inputs: versionSpec: '$(python.version)' @@ -45,6 +46,13 @@ steps: ./cc-test-reporter before-build displayName: 'Install dependencies' +- script: | + python generatestructs.py + git add -A . + git commit -m "Updated API pairs and coins" + git push + displayName: 'Update API structs' + - script: | cd docs && make doctest && cd .. pytest -v --cov . --cov-report xml:coverage.xml