Skip to content

Bump jvm from 1.9.24 to 2.0.0 #80

Bump jvm from 1.9.24 to 2.0.0

Bump jvm from 1.9.24 to 2.0.0 #80

Workflow file for this run

name: Build and test
on:
push:
branches:
- 'main'
pull_request: {}
# allow manual execution
workflow_dispatch: {}
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
- name: Run static analysis
run: ./gradlew detekt
- name: Archive detekt reports
uses: actions/upload-artifact@v3
with:
name: detekt-reports
path: build/reports/detekt
- name: Build
run: ./gradlew build -x test
- name: Run tests
run: ./gradlew test
- name: Archive test reports
uses: actions/upload-artifact@v3
with:
name: test-reports
path: |
build/reports/jacoco
build/reports/tests