Add basic test cases and workflows for the Moesif extension #5
This file contains hidden or 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
| name: Validate Pull Request | |
| on: pull_request | |
| env: | |
| BALLERINA_DISTRIBUTION_VERSION: 2201.12.0 # Update this with the latest Ballerina version | |
| jobs: | |
| ubuntu-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21.0.3 | |
| - name: Set up Ballerina | |
| uses: ballerina-platform/setup-ballerina@v1.1.3 | |
| with: | |
| version: ${{ env.BALLERINA_DISTRIBUTION_VERSION }} | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build with Gradle | |
| env: | |
| packageUser: ${{ github.actor }} | |
| packagePAT: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| ./gradlew clean build --stacktrace --scan --console=plain --no-daemon | |
| ./gradlew codeCoverageReport --console=plain --no-daemon | |
| - name: Upload Coverage Report | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| files: ballerina-tests/moesif-server-tests/target/report/moesif_server_tests/coverage-report.xml | |