-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from virtualritz/main
Added `Database::iter()`, docs, DB update, deps bump.
- Loading branch information
Showing
26 changed files
with
191 additions
and
31,821 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,22 @@ | ||
name: Check | ||
on: | ||
pull_request: | ||
paths: | ||
- assets/** | ||
|
||
jobs: | ||
check_database_update: | ||
name: Check libphonenumber database update | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Update assets | ||
run: ./assets/update.sh | ||
- name: Check git status | ||
run: | | ||
if [[ -n "$(git status --porcelain=v2)" ]]; | ||
then | ||
echo "Found untracked or uncommitted files after updating the libphonenumber database, failing." | ||
exit 1 | ||
fi |
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
Oops, something went wrong.