Skip to content

Refactor build failure library to use metrics data #1784

Refactor build failure library to use metrics data

Refactor build failure library to use metrics data #1784

Workflow file for this run

---
name: groovy-tests
on: [push, pull_request]
jobs:
tests:
strategy:
matrix:
os:
- windows-latest
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 11
- uses: actions/checkout@v2
- name: Run Tests
run: |
./gradlew test --info
- name: Upload Coverage Report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/reports/jacoco/test/jacocoTestReport.xml