Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pull request
# Pull Request

<!-- Your content goes here: -->

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
build-all:
name: Check if tests compile cleanly with starter sources
name: Check if all exercise tests compile cleanly with starter sources
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
run: bin/build-changed-exercise

lint-all:
name: Lint all Java files using Checkstyle
name: Lint all exercises using Checkstyle
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-24.04
steps:
Expand All @@ -58,7 +58,7 @@ jobs:
working-directory: exercises

lint-changed:
name: Lint changed Java exercises using Checkstyle
name: Lint changed exercises using Checkstyle
if: github.event_name == 'pull_request'
runs-on: ubuntu-24.04
steps:
Expand Down