Skip to content

fix(deps): update dependency org.eolang:eo-parser to v0.38.4 #319

fix(deps): update dependency org.eolang:eo-parser to v0.38.4

fix(deps): update dependency org.eolang:eo-parser to v0.38.4 #319

Workflow file for this run

---
name: codecov
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
codecov:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g eolang
- run: mvn install -Pjacoco
- uses: codecov/codecov-action@v3
with:
file: ./target/site/jacoco/jacoco.xml
fail_ci_if_error: true