diff --git a/azure-pipelines.yml b/azure-pipelines.yml index dc14cfd..934c881 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -15,6 +15,18 @@ stages: parameters: minrust: 1.36.0 codecov_token: $(CODECOV_TOKEN_SECRET) +- stage: codegen + displayName: Verify Code-gen + dependsOn: [] + jobs: + - job: codegen + pool: + vmImage: 'ubuntu-16.04' + steps: + - template: azure/install-rust.yml@templates + - script: | + cargo run --package typos-codegen -- --output typos-dict/src/dict_codegen.rs --check + displayName: Verify Code-gen - stage: committed displayName: Lint History dependsOn: []