Skip to content

ci(check): check.yml #4

ci(check): check.yml

ci(check): check.yml #4

Workflow file for this run

name: Check
on:
push:
tags:
- 'v0.*'
- 'v1.*'
branches:
- 'master'
- 'ci/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install IntelliJ IDEA
run: curl https://download.jetbrains.com/idea/ideaIC-2024.3.1.1.tar.gz -L | tar -xzf - -C ~
- name: Reformat
run: ~/idea-IC-*/bin/format.sh -r -m *.kt,*.kts,*.java format .
- name: Check
run: git diff --exit-code --color