Skip to content

Commit

Permalink
Merge branch 'master' into dev/top-level-namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
zingz0r authored Dec 23, 2024
2 parents d559a8e + 878f764 commit 50b4e6a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# .github/workflows/ci.yml
name: CI Pipeline
name: '♻️ CI'

on:
workflow_dispatch:
Expand Down
19 changes: 11 additions & 8 deletions .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
name: Qodana
name: '🧠 Qodana: Static Code Analysis'

on:
workflow_dispatch:
pull_request:
push:
branches: # Specify your branches here
- main # The 'main' branch
- 'releases/*' # The release branches
branches:
- master

jobs:
qodana:
runs-on: ubuntu-latest

permissions:
contents: write
pull-requests: write
checks: write

steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0 # a full history is required for pull request analysis
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2024.2
uses: JetBrains/qodana-action@v2024.3
with:
pr-mode: false
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_590242153 }}
QODANA_ENDPOINT: 'https://qodana.cloud'
QODANA_ENDPOINT: 'https://qodana.cloud'
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

[![CI Pipeline](https://github.com/zingz0r/CloudFlare.Client/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/zingz0r/CloudFlare.Client/actions/workflows/ci.yml?query=branch%3Amaster)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=CloudFlare.Client&metric=coverage)](https://sonarcloud.io/dashboard?id=CloudFlare.Client)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=CloudFlare.Client&metric=alert_status)](https://sonarcloud.io/dashboard?id=CloudFlare.Client)
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=CloudFlare.Client&metric=sqale_rating)](https://sonarcloud.io/dashboard?id=CloudFlare.Client)

> **_Info:_** The library currently targets the .Net Standard platforms
Expand Down
5 changes: 4 additions & 1 deletion qodana.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
version: "1.0"
linter: jetbrains/qodana-cdnet:2024.3
linter: jetbrains/qodana-cdnet:2024.3-eap
profile:
name: qodana.recommended
include:
- name: CheckDependencyLicenses
dotnet:
solution: CloudFlare.Client.sln
configuration: Release

0 comments on commit 50b4e6a

Please sign in to comment.