Improve speed of tx_search
query by using single query clause on sequence number
#6327
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: API Docs | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- .github/workflows/cargo-doc.yml | |
- Cargo.toml | |
- Cargo.lock | |
- crates/** | |
pull_request: | |
paths: | |
- .github/workflows/cargo-doc.yml | |
- Cargo.toml | |
- Cargo.lock | |
- crates/** | |
# Cancel previous runs of this workflow when a new commit is added to the PR, branch or tag | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
cargo-doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly-2024-04-21 | |
- name: Build API documentation | |
uses: actions-rs/cargo@v1 | |
env: | |
RUSTDOCFLAGS: "--cfg docsrs" | |
with: | |
command: doc | |
args: --all-features | |
- name: Push API documentation to GitHub Pages | |
if: github.ref == 'refs/heads/master' | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
deploy_key: ${{ secrets.IBC_RS_DOC_PRIVATE_KEY }} | |
external_repository: informalsystems/hermes-api-doc | |
publish_dir: ./target/doc |