Skip to content

Commit

Permalink
Add check for keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
rkavitha-hcl committed Jun 3, 2024
1 parent d7e37d7 commit ddf9bb8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "build"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Bazel Build and Test
run: |
grep -r 'butter\|financial\|exchange\|stock\|market\|trading\|GCPTP\|CME\|bubble\|coarse-grained equalization\|CGE\|coarse' *
if [ $? -eq 0 ]
then
echo "Keyword Check Failed. Pl. check and fix it"
else
echo "Keyword check Passed."
fi

0 comments on commit ddf9bb8

Please sign in to comment.