Skip to content

chore(deps): bump codecov/codecov-action from 4 to 5 #326

chore(deps): bump codecov/codecov-action from 4 to 5

chore(deps): bump codecov/codecov-action from 4 to 5 #326

Workflow file for this run

name: build
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: gradle
- name: Build, test with Gradle
run: ./gradlew clean testCodeCoverageReport --no-daemon
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{secrets.CODECOV_TOKEN}}
files: ./build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml
flags: tests
name: main-tests