We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f095757 commit f40e368Copy full SHA for f40e368
2 files changed
.github/workflows/pre-commit.yml
@@ -0,0 +1,18 @@
1
+name: pre-commit
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main, develop]
7
8
+jobs:
9
+ pre-commit:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v5
13
+ - name: Set up Python
14
+ uses: actions/setup-python@v6
15
+ with:
16
+ python-version: "3.13"
17
+ - name: Run pre-commit
18
+ uses: pre-commit/action@v3.0.1
CHANGELOG.md
@@ -7,6 +7,8 @@
- Updates the COWER example for the 2025 reporting cycle.
- Removes `library/base_2022` in favor of a `libray/base` for base assumptions and scenarios that
can be updated annually as needed.
+- A pre-commit workflow is added to be run against PRs into the main and develop branches to ensure
+ code quality checks are passed.
## v0.6.1 - 17 October 2025
0 commit comments