Update known PR zip prefixes and allow zone lookup by partial zip if country hides provinces #3139
Workflow file for this run
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
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Ruby ${{ matrix.ruby }} / ${{ matrix.gemfile }} | |
strategy: | |
fail-fast: false | |
matrix: | |
gemfile: | |
- Gemfile | |
ruby: ["3.1", "3.2", "3.3"] | |
env: | |
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Tests | |
run: bin/test | |
- name: RuboCop | |
run: bin/style |