CI CD - NotTheRealWallyx/LinkSentinel GitHub Wiki

CI/CD Integration

LinkSentinel is designed to work seamlessly in your CI/CD pipeline.

  • Run tests with pytest on every push/PR.
  • Run the link checker on documentation changes.

Example workflow steps:

- name: Run tests
  run: poetry run pytest

- name: Run LinkSentinel
  run: poetry run python -m linksentinel .

See .github/workflows/ for full examples.