Skip to content

113 throw expression #219

113 throw expression

113 throw expression #219

Workflow file for this run

name: CI
env:
USERNAME: ${{ github.actor }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ v*, java-17 ]
pull_request:
branches: [ v* ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Execute Gradle build
run: ./gradlew app:test
- run: ./gradlew app:build jacocoTestReport
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.3.4
with:
format: jacoco
parallel: false
base-path: app/src/main/java