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
5 changes: 5 additions & 0 deletions .github/workflows/run-static-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: Static Tests for Python Scripts
on:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/run-static-tests.yml'
- 'pyproject.toml'
- 'src/**'
- 'tests/**'

jobs:
format:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: Unit Tests for Python Scripts
on:
pull_request:
branches: [ main ]
paths:
- '.github/workflows/run-unit-tests.yml'
- 'pyproject.toml'
- 'src/**'
- 'tests/**'

jobs:
unit-test:
Expand Down
4 changes: 4 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
".": "0.0.1"
}

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ python-project-template/
├── .mise.toml # mise tool version manager configuration (Python and tool versions)
├── pyproject.toml # Project configuration and dependencies
├── release-please-config.json # Release Please configuration for automated version management
├── .release-please-manifest.json # Release Please manifest file (auto-managed by release-please)
├── Makefile # Development commands
└── logging.conf # Logging configuration
```
Expand Down
2 changes: 1 addition & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"version-file": "pyproject.toml"
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/refs/tags/v17.1.3/schemas/config.json"
}