Skip to content

Commit

Permalink
build: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mjedynak committed Feb 17, 2024
1 parent 50b248f commit 41ac858
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 33 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build-gradle-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3-beta

- name: Execute Gradle build
run: ./gradlew build
29 changes: 0 additions & 29 deletions .github/workflows/gradle.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.MD → README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Builder Generator Idea plugin ![Java CI with Gradle](https://github.com/mjedynak/builder-generator-idea-plugin/workflows/Java%20CI%20with%20Gradle/badge.svg?branch=master)
===============
# Builder Generator Idea plugin ![build](https://github.com/mjedynak/builder-generator-idea-plugin/actions/workflows/build-gradle-project.yml/badge.svg?branch=master)

Plugin for IntelliJ IDEA that adds ability to generate builder for a class and switch between them.

Switching between builder and source class is similar to 'Go To Test' action.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = "pl.mjedynak"
version = "1.4.0"
version = "1.5.0-SNAPSHOT"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</ul>
]]>
</description>
<version>1.4.0</version>
<version>1.5.0-SNAPSHOT</version>
<change-notes>
<![CDATA[
version 1.4.0
Expand Down

0 comments on commit 41ac858

Please sign in to comment.