SP-4263 Implement compute quotas #19
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
name: "CI: Testing" | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'gradle' | |
- name: Run Tests | |
run: | | |
cd skaha | |
./gradlew clean check | |
- | |
name: Upload coverage artifacts | |
uses: actions/[email protected] | |
with: | |
name: skaha-unittests-coverage | |
path: skaha/build/reports/jacoco/test/jacocoTestReport.xml | |
if-no-files-found: error | |
retention-days: 1 | |
overwrite: true | |
codecov: | |
runs-on: ubuntu-latest | |
needs: tests | |
permissions: | |
id-token: write | |
steps: | |
- | |
name: Download coverage artifacts | |
uses: actions/[email protected] | |
with: | |
name: skaha-unittests-coverage | |
- | |
name: List Downloaded Artifacts | |
run: | | |
echo "Downloaded artifacts:" | |
ls -lah $GITHUB_WORKSPACE | |
- | |
name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: jacocoTestReport.xml | |
flags: skaha-unittests-coverage | |
name: skaha-unittests-coverage | |
fail_ci_if_error: true | |
verbose: true |