Create deno.yml#122
Open
Mattendo64 wants to merge 14 commits into
Open
Conversation
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
…"inheritedJdk" /> <orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="module" module-name="M1yt0s31450" /> </component> </module>
From 1a6c4bc0b95c2eb7843b544f5a4a86ef632ca18e Mon Sep 17 00:00:00 2001
From: Qodana Application <qodana-support@jetbrains.com>
Date: Thu, 29 May 2025 18:02:37 +0000
Subject: [PATCH 1/2] Add qodana.yaml file
---
qodana.yaml | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 qodana.yaml
diff --git a/qodana.yaml b/qodana.yaml
new file mode 100644
index 0000000..c484c70
--- /dev/null
+++ b/qodana.yaml
@@ -0,0 +1,6 @@
+version: "1.0"
+linter: jetbrains/qodana-python:2025.1
+profile:
+ name: qodana.recommended
+include:
+ - name: CheckDependencyLicenses
\ No newline at end of file
From 15f7084465f90ad12499ca45194a347cecabeb1b Mon Sep 17 00:00:00 2001
From: Qodana Application <qodana-support@jetbrains.com>
Date: Thu, 29 May 2025 18:02:38 +0000
Subject: [PATCH 2/2] Add github workflow file
---
.github/workflows/qodana_code_quality.yml | 28 +++++++++++++++++++++++
1 file changed, 28 insertions(+)
create mode 100644 .github/workflows/qodana_code_quality.yml
diff --git a/.github/workflows/qodana_code_quality.yml b/.github/workflows/qodana_code_quality.yml
new file mode 100644
index 0000000..d43247b
--- /dev/null
+++ b/.github/workflows/qodana_code_quality.yml
@@ -0,0 +1,28 @@
+name: Qodana
+on:
+ workflow_dispatch:
+ pull_request:
+ push:
+ branches: # Specify your branches here
+ - main # The 'main' branch
+ - 'releases/*' # The release branches
+
+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
+ - name: 'Qodana Scan'
+ uses: JetBrains/qodana-action@v2025.1
+ with:
+ pr-mode: false
+ env:
+ QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_1197152322 }}
+ QODANA_ENDPOINT: 'https://qodana.cloud'
\ No newline at end of file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.