Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github-workflows/build-on-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Build on Ubuntu
name: Ubuntu CI

on: push

jobs:
build:
name: Build on Ubuntu
runs-on: ubuntu-latest

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github-workflows/build-on-windows.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Build on Windows
name: Windows CI

on: pull_request

jobs:
build:
runs-on: windows-latest
name: Build and test on Windows

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 3 additions & 2 deletions .github-workflows/ensure-reports-updated.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Ensures that the license report files were modified in this PR.

name: Ensure license reports updated
name: License Reports

on:
pull_request:
Expand All @@ -9,12 +9,13 @@ on:

jobs:
check:
name: Ensure license reports are updated
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
# Configure the checkout of all branches, so that it is possible to run the comparison.
# Configure the checkout of all branches so that it is possible to run the comparison.
fetch-depth: 0
# Check out the `config` submodule to fetch the required script file.
submodules: true
Expand Down
3 changes: 2 additions & 1 deletion .github-workflows/increment-guard.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Ensures that the current lib version is not yet published but executing the Gradle
# `checkVersionIncrement` task.

name: Check version increment
name: Version Guard

on:
push:
Expand All @@ -10,6 +10,7 @@ on:

jobs:
check:
name: Check version increment
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 2 additions & 0 deletions .github-workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:

jobs:
publish:
name: Publish to Maven repositories
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/detekt-code-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Run Detekt code analysis
name: detekt code analysis

on: push

jobs:
detekt:
name: Run detekt
runs-on: ubuntu-latest

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Validate Gradle Wrapper
name: Gradle Wrapper validation
on:
push:
branches:
Expand All @@ -9,6 +9,7 @@ on:

jobs:
validation:
name: Validate Gradle Wrapper
runs-on: ubuntu-latest
steps:
- name: Checkout latest code
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/io/spine/dependency/local/Time.kt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import io.spine.dependency.Dependency
)
object Time : Dependency() {
override val group = Spine.group
override val version = "2.0.0-SNAPSHOT.237"
override val version = "2.0.0-SNAPSHOT.238"
private const val infix = "spine-time"

fun lib(version: String): String = "$group:$infix:$version"
Expand Down
Loading