Bump beta release to 0.3.1 #49
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Logging Lint | |
| on: | |
| push: | |
| paths: | |
| - 'core/**' | |
| - 'integrations/otel/**' | |
| - 'docs/observability.md' | |
| - 'docs/logging-style-guide.md' | |
| - 'scripts/lint_logging.py' | |
| - 'tests/parity/telemetry_redaction_canonical.json' | |
| - '.github/workflows/logging-lint.yml' | |
| pull_request: | |
| paths: | |
| - 'core/**' | |
| - 'integrations/otel/**' | |
| - 'docs/observability.md' | |
| - 'docs/logging-style-guide.md' | |
| - 'scripts/lint_logging.py' | |
| - 'tests/parity/telemetry_redaction_canonical.json' | |
| - '.github/workflows/logging-lint.yml' | |
| jobs: | |
| logging-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Run logging lint | |
| run: python3 scripts/lint_logging.py |