Skip to content
Merged
Show file tree
Hide file tree
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
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install ruff
run: pip install ruff

- name: Run ruff
run: ruff check .
32 changes: 32 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Security Policy

## Supported Versions

| Version | Supported |
|---------|-----------|
| 0.1.x | ✅ |

## Reporting a Vulnerability

Please **do not** open a public GitHub issue for security vulnerabilities.

Use one of these channels instead:

- **GitHub private vulnerability reporting** (preferred): go to the
[Security tab](https://github.com/Botrops1/FusionConstraints/security/advisories/new)
and open a private advisory.
- **Email**: contact the maintainer directly (see profile).

### What to include

- Description of the vulnerability and potential impact
- Steps to reproduce or proof-of-concept
- Affected version(s)
- Any suggested fix if you have one

### Response timeline

- Acknowledgement within **48 hours**
- Assessment and fix timeline communicated within **7 days**

Thank you for helping keep FusionConstraints users safe.
Loading