chore: add tests, update docs and actions (#299)

* docs: update documentation

* feat: validate-inputs has it's own pyproject

* security: mask DOCKERHUB_PASSWORD

* chore: add tokens, checkout, recrete docs, integration tests

* fix: add `statuses: write` permission to pr-lint
This commit is contained in:
2025-10-18 13:09:19 +03:00
committed by GitHub
parent d3c2de1bd1
commit 7061aafd35
148 changed files with 5119 additions and 1897 deletions

View File

@@ -1,7 +1,7 @@
"""Tests for the VersionValidator module."""
from pathlib import Path
import sys
from pathlib import Path
import pytest # pylint: disable=import-error
@@ -9,14 +9,13 @@ import pytest # pylint: disable=import-error
sys.path.insert(0, str(Path(__file__).parent.parent))
# pylint: disable=wrong-import-position
from validators.version import VersionValidator
from tests.fixtures.version_test_data import (
CALVER_INVALID,
CALVER_VALID,
SEMVER_INVALID,
SEMVER_VALID,
)
from validators.version import VersionValidator
class TestVersionValidator: # pylint: disable=too-many-public-methods