Skip to content

Improve iterator to stop when fetched key is greater than or equal to… #21

Improve iterator to stop when fetched key is greater than or equal to…

Improve iterator to stop when fetched key is greater than or equal to… #21

Workflow file for this run

on:
push:
branches: [ "trunk" ]
pull_request:
branches: [ "trunk" ]
name: Continuous Integration
env:
CARGO_TERM_COLOR: always
jobs:
test-x86_64-unknown-linux-gnu:
name: Test Suite (x86_64-unknown-linux-gnu)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
test-x86_64-unknown-windows-msvc:
name: Test Suite (x86_64-unknown-windows-msvc)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose
test-x86_64-unknown-darwin:
name: Test Suite (x86_64-unknown-darwin)
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- uses: actions-rs/cargo@v1
with:
command: test
args: --verbose