Revert "Convert semi-colon separated house numbers to a range (#1562)" #8
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
# Workflow to run unit tests on OMT`s new Pull Requests and commits pushed into OMT repo | |
name: OpenMapTiles SQL Test CI | |
on: | |
push: | |
branches: [ master, master-tools ] | |
pull_request: | |
jobs: | |
unit_tests: | |
name: Run unit test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the changes | |
uses: actions/checkout@v2 | |
- name: Run unit tests | |
run: | | |
make clean && make test-sql |