Skip to content

Introduce Java library Stream plugin #23

Introduce Java library Stream plugin

Introduce Java library Stream plugin #23

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ develop ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
format:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gradle
uses: ./.github/actions/setup-gradle
with:
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
- name: Check formatting
run: ./gradlew spotlessCheck
lint:
name: Run detekt
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gradle
uses: ./.github/actions/setup-gradle
with:
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
- name: Run detekt
run: ./gradlew detekt
build:
name: Build and validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Gradle
uses: ./.github/actions/setup-gradle
with:
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
- name: Build and validate
run: ./gradlew build :plugin:validatePlugins