Skip to content

feat: Added empty seed raise Exception #2

feat: Added empty seed raise Exception

feat: Added empty seed raise Exception #2

# Static Code Analysis, runs when PR to main or push to feature/**, feat/**, fix/** branches.
name: Static Code Analysis
on:
pull_request:
branches:
- main
push:
branches:
- "feature/**"
- "feat/**"
- "fix/**"
workflow_dispatch:
jobs:
static-code-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Run Static Code Analysis
run: uvx pre-commit run --all-files --show-diff-on-failure --color=always