Update dependency org.eolang:eo-maven-plugin to v0.58.3 #278
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
| --- | ||
|
Check failure on line 1 in .github/workflows/reports.yml
|
||
| name: Reports | ||
| "on": | ||
| push: | ||
| branches: | ||
| - master | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| jobs: | ||
| codecov: | ||
| runs-on: ubuntu-20.04 | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - name: Set up JDK | ||
| uses: actions/setup-java@v3 | ||
| with: | ||
| java-version: 11 | ||
| - uses: actions/cache@v3 | ||
| with: | ||
| path: ~/.m2/repository | ||
| key: maven-${{ hashFiles('**/pom.xml') }} | ||
| restore-keys: | | ||
| maven- | ||
| - name: Run tests | ||
| - run: mvn install -Pjacoco | ||
| - name: Upload coverage to Codecov | ||
| - uses: codecov/codecov-action@v3 | ||
| with: | ||
| file: ./target/site/jacoco/jacoco.xml | ||
| fail_ci_if_error: true | ||