Skip to content

Commit

Permalink
Rename jobs workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
loicgreffier committed Oct 31, 2024
1 parent 9313d41 commit 46120ed
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Hotfix Branch
name: Hotfix

on:
workflow_dispatch:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Pull Request

on:
pull_request:
branches: [ master, hotfix/* ]
branches:
- master
- hotfix/*

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Continuous Integration
name: Push Master

on:
push:
branches: [ master ]
branches:
- master

jobs:
build:
Expand Down Expand Up @@ -39,7 +40,7 @@ jobs:
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle

- name: Check Style
- name: Check style
run: ./gradlew checkstyleMain checkstyleTest

- name: Build and analyze
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: Release

on:
push:
tags: [ '*' ]
tags:
- 'v*.*.*'

jobs:
build:
Expand Down

0 comments on commit 46120ed

Please sign in to comment.