chimei-ruiju.orgへの対応: 住所のパースに成功した場合に位置情報をParsedAddress
に含めるようにする
#154
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: Unit test & Integration test | |
on: | |
pull_request: | |
paths-ignore: [ '*.md' ] | |
push: | |
branches: [ 'main' ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
shared-key: 'test-on-pr' | |
key: 'main' | |
save-if: ${{ github.ref == 'refs/heads/main' }} # mainブランチにコミットが追加された時のみキャッシュを保存する | |
- name: Test core | |
working-directory: core | |
run: | | |
cargo test | |
cargo test --features=blocking | |
cargo test --features=experimental | |
- name: Integration test | |
working-directory: tests | |
run: cargo test | |
run-tests-wasm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
shared-key: 'wasm-pack' | |
key: 'main' | |
save-if: ${{ github.ref == 'refs/heads/main' }} # mainブランチにコミットが追加された時のみキャッシュを保存する | |
cache-provider: 'github' | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Run wasm-pack test for core(japanese-address-parser) | |
working-directory: core | |
run: wasm-pack test --firefox --headless | |
- name: Build check for wasm crate | |
working-directory: wasm | |
run: wasm-pack build --target web --scope toriyama |