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: 1 addition & 2 deletions .github/workflows/clang_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ permissions:
contents: read

jobs:
ubuntu:
name: AMD64 Ubuntu 24.04
clang-test:
Copy link

Copilot AI Dec 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a name field after the job identifier to provide a more descriptive display name in the GitHub Actions UI. For example: name: Clang Test would make the workflow runs more readable and consistent with other workflows.

Suggested change
clang-test:
clang-test:
name: Clang Test

Copilot uses AI. Check for mistakes.
runs-on: ubuntu-24.04
timeout-minutes: 120
strategy:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/gcc_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ permissions:
contents: read

jobs:
ubuntu:
name: AMD64 Ubuntu 24.04
gcc-test:
Copy link

Copilot AI Dec 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider adding a name field after the job identifier to provide a more descriptive display name in the GitHub Actions UI. For example: name: GCC Test would make the workflow runs more readable and consistent with other workflows.

Suggested change
gcc-test:
gcc-test:
name: GCC Test

Copilot uses AI. Check for mistakes.
runs-on: ubuntu-24.04
timeout-minutes: 120
strategy:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/license_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ on:
- main

jobs:
rat-check:
rat-license-check:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test_with_sanitizer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ permissions:
contents: read

jobs:
ubuntu:
name: AMD64 Ubuntu 24.04
test-with-sanitizer:
Copy link

Copilot AI Dec 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The job identifier was updated to test-with-sanitizer, but the display name still shows "AMD64 Ubuntu 24.04" which doesn't reflect the purpose of this sanitizer test workflow. Consider updating this to something more descriptive like "Test with Sanitizer" to match the workflow name and new job identifier.

Suggested change
test-with-sanitizer:
test-with-sanitizer:
name: Test with sanitizer

Copilot uses AI. Check for mistakes.
runs-on: ubuntu-24.04
timeout-minutes: 120
strategy:
Expand Down
Loading