Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
codesrg authored Sep 10, 2023
2 parents 6b290a3 + 179db2d commit c85a513
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,21 @@ on:
branches:
- main
- develop
- 'releases/*'

jobs:
qodana:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
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@v2023.2
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} # read the steps about it below
3 changes: 3 additions & 0 deletions zenpass/password.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ def show(self):


class ZenPass:
def __init__(self):
pass

@staticmethod
def generate():
"""
Expand Down

0 comments on commit c85a513

Please sign in to comment.