Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #252

Merged
merged 1 commit into from
Nov 27, 2024
Merged
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ these things on Reggit or in the Discussion Forum.
- Virtual file system for reading zip-archives
- Instancing

# Build Status
[![Build status](https://github.com/kimkulling/osre/actions/workflows/cmake.yml/badge.svg)](https://github.com/kimkulling/osre/actions/workflows/cmake.yml)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=kimkulling_osre&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=kimkulling_osre)
[![Documentation Status](https://readthedocs.org/projects/osre-doc/badge/?version=latest)](https://osre-doc.readthedocs.io/en/latest/?badge=latest)
Comment on lines +28 to +30
Copy link

Choose a reason for hiding this comment

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

💡 Codebase verification

Badge URLs need attention - SonarCloud badge is not accessible

The verification shows that:

  • GitHub Actions badge (200): ✓ Accessible
  • SonarCloud badge (405): ✗ Method Not Allowed error
  • Read the Docs badge (200): ✓ Accessible

The SonarCloud badge URL appears to be misconfigured or the project might not be properly set up in SonarCloud. Consider:

  • Verifying the project key kimkulling_osre in SonarCloud
  • Checking if the SonarCloud integration is properly configured
  • Removing the badge until SonarCloud integration is fixed
🔗 Analysis chain

Verify badge URLs and images.

Let's verify that all badge URLs are correctly configured and accessible.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that all badge URLs are accessible and return valid status codes

# Extract and verify each badge URL
echo "Verifying GitHub Actions badge..."
curl -sI "https://github.com/kimkulling/osre/actions/workflows/cmake.yml/badge.svg" | head -n 1

echo "Verifying SonarCloud badge..."
curl -sI "https://sonarcloud.io/api/project_badges/measure?project=kimkulling_osre&metric=alert_status" | head -n 1

echo "Verifying Read the Docs badge..."
curl -sI "https://readthedocs.org/projects/osre-doc/badge/?version=latest" | head -n 1

Length of output: 561


# Documentation #
- Please check [OSRE-Docs](https://osre-doc.readthedocs.io/en/latest/).

Expand All @@ -40,11 +45,6 @@ We have a discord server at [Discord](https://discord.gg/kqJQW5dQ)
- Take a look into our [OSRE-Forum](https://github.com/kimkulling/osre/discussions)
- Please check our [Reddit-Community](https://www.reddit.com/r/osre/)

# Build Status
[![Build status](https://github.com/kimkulling/osre/actions/workflows/cmake.yml/badge.svg)](https://github.com/kimkulling/osre/actions/workflows/cmake.yml)
[![Coverity Scan Build Status](https://scan.coverity.com/projects/13242/badge.svg)](https://scan.coverity.com/projects/kimkulling-osre)
[![Documentation Status](https://readthedocs.org/projects/osre-doc/badge/?version=latest)](https://osre-doc.readthedocs.io/en/latest/?badge=latest)

# Supported compilers
- Windows:
- Visual Studio 2019
Expand Down
Loading