Skip to content

Bump io.github.cosmicsilence:gradle-scalafix from 0.1.15 to 0.2.0 #666

Bump io.github.cosmicsilence:gradle-scalafix from 0.1.15 to 0.2.0

Bump io.github.cosmicsilence:gradle-scalafix from 0.1.15 to 0.2.0 #666

Workflow file for this run

# This name is shown in the status badge in the README
name: code-formatting
on:
push:
branches-ignore:
- 'tmp**'
pull_request:
branches-ignore:
- 'tmp**'
jobs:
test:
name: JDK ${{matrix.java}}
runs-on: ubuntu-latest
strategy:
matrix:
java: [17]
distribution: [temurin]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
- name: Check code formatting
run: ./gradlew spotlessCheck