Skip to content

parametrize key & value size #86

parametrize key & value size

parametrize key & value size #86

Workflow file for this run

name: Push tester
on:
push:
branches:
- '**'
jobs:
rust_checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
profile: minimal
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Check formatting
uses: actions-rs/cargo@v1.0.3
with:
command: fmt
args: --all -- --check
- name: Run clippy
uses: actions-rs/clippy-check@v1.0.7
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
rust_tests:
strategy:
fail-fast: true
matrix:
pair:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macOS-11
- target: x86_64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.pair.os }}
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
profile: minimal
- uses: Swatinem/rust-cache@v2
- name: Tests
uses: actions-rs/cargo@v1.0.3
with:
command: test
args: --all --all-features
markdown_links_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.15