Skip to content

Commit

Permalink
Automatically run API tests through GH actions as PR validation
Browse files Browse the repository at this point in the history
  • Loading branch information
mluypaert committed Jan 15, 2024
1 parent 80cc3e2 commit 0813acc
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/PR-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: PR validation
on:
pull_request:
types: [synchronize, opened, reopened, edited]
branches:
- master
jobs:
test-api:
permissions:
id-token: write # Required for authentication through OIDC to AWS
runs-on: ubuntu-22.04
steps:
- name: Report workflow details
run: |
echo "Repository ${{ github.repository }}."
echo "Trigger ref ${{ github.ref }}, base-ref ${{ github.base_ref }}, head_ref ${{ github.head_ref }}."
- name: Check out repository code
uses: actions/checkout@v3
- name: Report files updated in PR
run: |
git fetch -q origin ${{ github.base_ref }} ${{ github.head_ref }}
git diff --name-only origin/${{ github.base_ref }} origin/${{ github.head_ref }}
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
- name: Install clojure and clojure cli (clj)
uses: DeLaGuardo/[email protected]
with:
cli: 1.10.1.536
- name: Report runtime details
run: |
echo "Github runner OS: ${{ runner.os }}"
- name: AWS credentials configuration
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{secrets.GH_ACTIONS_AWS_ROLE}}
role-session-name: gh-actions-${{github.run_id}}.${{github.run_number}}.${{github.run_attempt}}-test-api
aws-region: us-east-1
- name: Generate pom file
run: |
clj -Spom
- name: Run Integration tests
run: |
make run-tests GOOGLE_APP_PROFILE=dev
#TODO: add UI and API build and container packaging test

0 comments on commit 0813acc

Please sign in to comment.