-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add consistency with US data package (#29)
* Add improvements * Minor code quality improvements * Update URLs * Use US actions
- Loading branch information
1 parent
b7f7998
commit 634120f
Showing
17 changed files
with
352 additions
and
184 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# This workflow is used to check various parts of the | ||
# run prior to merging: | ||
|
||
# - The code's formatting | ||
# - Versioning - note that this checks, but does not update | ||
# - That the code builds successfully | ||
# - That any automated tests pass | ||
name: Pull request | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
name: Lint | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install black | ||
- name: Check formatting | ||
run: black . -l 79 --check | ||
check-version: | ||
name: Check version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # Fetch all history for all tags and branches | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
- name: Build changelog | ||
run: pip install "yaml-changelog>=0.1.7" && make changelog | ||
- name: Preview changelog update | ||
run: ".github/get-changelog-diff.sh" | ||
- name: Check version number has been properly updated | ||
run: ".github/is-version-number-acceptable.sh" | ||
test: | ||
name: Build and test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # Fetch all history for all tags and branches | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
- name: Install package | ||
run: make install | ||
- name: Download data inputs | ||
run: make download | ||
env: | ||
POLICYENGINE_UK_DATA_GITHUB_TOKEN: ${{ secrets.POLICYENGINE_UK_DATA_GITHUB_TOKEN }} | ||
- name: Build datasets | ||
run: make data | ||
env: | ||
LITE_MODE: true | ||
- name: Run tests | ||
run: pytest | ||
- name: Test documentation builds | ||
run: make documentation |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# This builds and pushes the changelog, then | ||
# automatically runs push_2 using the new version number | ||
# to allow for proper pushing to PyPI. | ||
|
||
# This script must run first and complete to allow for | ||
# proper versioning. | ||
|
||
name: Update versioning | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
|
||
jobs: | ||
check-version: | ||
name: Check version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # Fetch all history for all tags and branches | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12 | ||
- name: Build changelog | ||
run: pip install "yaml-changelog>=0.1.7" && make changelog | ||
- name: Preview changelog update | ||
run: ".github/get-changelog-diff.sh" | ||
- name: Check version number has been properly updated | ||
run: ".github/is-version-number-acceptable.sh" | ||
- name: Update changelog | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
add: "." | ||
committer_name: Github Actions[bot] | ||
author_name: Github Actions[bot] | ||
message: Update PolicyEngine US data | ||
github_token: ${{ secrets.POLICYENGINE_US_DATA_GITHUB_TOKEN }} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ test: | |
pytest | ||
|
||
install: | ||
pip install policyengine-uk==2.1.1 | ||
pip install -e ".[dev]" | ||
|
||
download: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
- bump: minor | ||
changes: | ||
added: | ||
- 5% dropout in calibration. | ||
- Code quality improvements. |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.