Skip to content

Commit

Permalink
Adding initial CI workflow for search (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
saratvemulapalli authored Feb 3, 2021
1 parent 5dd4a82 commit d9ae459
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build and Test Search
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
search_sanity:
name: "Search Sanity Tests"
runs-on: ubuntu-latest
steps:
- name: "Checkout Search"
uses: actions/checkout@v2
- name: "Run tests"
run: ./gradlew ':server:test'
16 changes: 16 additions & 0 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Validate Gradle Wrapper"
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1

0 comments on commit d9ae459

Please sign in to comment.