-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(prism-agent): add unit tests workflow for prism agent (#124)
- Loading branch information
abalias
authored
Nov 14, 2022
1 parent
67bd340
commit 550457b
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Prism agent testing workflow | ||
|
||
# Cancel previously running workflows if new commit pushed to the branch | ||
# this will help to push fixes earlier and stop previous workflows | ||
concurrency: | ||
group: ${{ github.head_ref }}${{ github.ref }}-prism-agent | ||
cancel-in-progress: true | ||
|
||
# Default shell is `sh` | ||
# which is old, use bourne-again version instead | ||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: prism-agent/service | ||
|
||
on: | ||
# Run with every push to `main` branch | ||
# Run with each PR opened vs PRISM agent | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- ".github/workflows/prism-agent.yml" | ||
- "prism-agent/**" | ||
pull_request: | ||
paths: | ||
- ".github/workflows/prism-agent.yml" | ||
- "prism-agent/**" | ||
|
||
# Global environment variables for all jobs | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }} | ||
ATALA_GITHUB_TOKEN: ${{ secrets.ATALA_GITHUB_TOKEN }} | ||
|
||
jobs: | ||
build-and-test-prism-agent: | ||
name: "Build and test prism agent" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Java and Scala | ||
uses: olafurpg/setup-scala@v13 | ||
with: | ||
java-version: [email protected] | ||
|
||
- name: Cache sbt | ||
uses: coursier/[email protected] | ||
|
||
- name: Run Scala formatter | ||
run: sbt scalafmtCheckAll | ||
|
||
- name: Build and test Castor | ||
run: sbt test | ||
|
||
- name: Aggregate test reports | ||
if: always() | ||
uses: ./.github/actions/aggregate-test-reports | ||
with: | ||
tests-dir: "prism-agent/service" | ||
|
||
- name: Publish test results | ||
# Publish even if the previous test step fails | ||
if: always() | ||
uses: EnricoMi/publish-unit-test-result-action@v2 | ||
with: | ||
junit_files: "prism-agent/service/target/test-reports/**/TEST-*.xml" | ||
comment_title: "PRISM Agent Test Results" | ||
check_name: "PRISM Agent Test Results" |