This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
Updated voice state + license year #162
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@v3 | |
- name: Setup java | |
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 | |
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 |