diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4cc84e..a8ebe14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,12 +17,12 @@ jobs: python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 with: persist-credentials: false - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 with: python-version: ${{ matrix.python-version }} cache: "pip" @@ -35,5 +35,3 @@ jobs: - name: Lint with ruff run: ruff check src/ tests/ - name: Run tests - run: | - python -m pytest tests/ -v --cov=src --cov-report=term-missing diff --git a/.gitignore b/.gitignore index 4c23f47..05061d4 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ __pycache__/ # C extensions *.so - # Distribution / packaging .Python build/ @@ -22,15 +21,12 @@ var/ wheels/ *.egg-info/ *.egg - # PyInstaller *.manifest *.spec - # Installer logs pip-log.txt pip-delete-this-directory.txt - # Unit test / coverage htmlcov/ .tox/ @@ -44,29 +40,24 @@ coverage.xml *.py,cover .hypothesis/ .pytest_cache/ - # Translations *.mo *.pot - # Environments .env .venv env/ venv/ ENV/ - # IDE .vscode/ .idea/ *.swp *.swo *~ - # OS .DS_Store Thumbs.db - # Project specific research/ fixtures/generated/ diff --git a/pyproject.toml b/pyproject.toml index 9a36e77..0743e97 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ dev = [ "ruff>=0.4.0", ] toml = ["tomli>=2.0.0", "tomli-w>=1.0.0"] -license = ["revenueholdings-license>=0.1.0"] +license-check = ["revenueholdings-license>=0.1.0"] [project.urls] Homepage = "https://github.com/Coding-Dev-Tools/configdrift"