Fix issue with armour strip. #1335
Workflow file for this run
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: Code Cov Workflow | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: "Codecov" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup java 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: "17" | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build project | |
uses: gradle/gradle-build-action@v2.9.0 | |
with: | |
arguments: test jacocoTestReport | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
- name: Upload test report | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/reports/tests/test/ | |
name: Test Report | |
retention-days: 14 | |
- name: Upload coverage report | |
uses: actions/upload-artifact@v3 | |
with: | |
path: build/reports/jacoco/test/ | |
name: Coverage Report | |
retention-days: 14 |