Skip to content

cleanup pytest coverage, remove build and dist folders #105

cleanup pytest coverage, remove build and dist folders

cleanup pytest coverage, remove build and dist folders #105

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build with Gradle
run: |
cd ./java
chmod +x ./gradlew
./gradlew build
- name: Archive test report
uses: actions/upload-artifact@v2
with:
name: Test report
path: ./java//build/reports/tests/test