Merge pull request #137 from kiwix/Fixes#134 #198
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| Build: | |
| name: Build & test source code | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: adopt | |
| java-version: 17 | |
| - name: Install dependencies | |
| run: bash ./install_deps.sh | |
| - name: Compile Project | |
| run: ./gradlew buildHeaders build | |
| - name: Create code coverage report | |
| run: ./gradlew createCodeCoverageReport | |
| - name: Upload code coverage to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Upload Coverage to GH-Actions | |
| uses: actions/upload-artifact@v4 | |
| if: ${{ always() }} | |
| with: | |
| name: Tests Coverage Report | |
| path: | | |
| lib/build/coverage-report/ |