Skip to content

Commit

Permalink
Added Azure CI (#4)
Browse files Browse the repository at this point in the history
Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com>
  • Loading branch information
iamabhishek-dubey committed May 15, 2021
1 parent 06db23f commit 62ca214
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 87 deletions.
18 changes: 18 additions & 0 deletions .azure-pipeline/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
trigger:
- master

pr:
branches:
include:
- master

stages:
- stage: precheck
jobs:
- job: spellcheck
dependsOn: []
pool:
vmImage: "ubuntu-18.04"
steps:
- script: scripts/spellcheck.sh
87 changes: 0 additions & 87 deletions buddy.yml

This file was deleted.

19 changes: 19 additions & 0 deletions scripts/spellcheck.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash

install_spellcheck() {
apt-get update -y
apt-get install -y aspell
}

run_spellcheck() {
aspell ../README.md
aspell ../CHANGELOG.md
aspell ../DEVELOPMENT.md
}

main() {
install_spellcheck
run_spellcheck
}

main

0 comments on commit 62ca214

Please sign in to comment.