Skip to content

feat: add rustc-hash feature (#42) #75

feat: add rustc-hash feature (#42)

feat: add rustc-hash feature (#42) #75

Workflow file for this run

name: CI
on:
push:
branches: [ trunk ]
pull_request:
branches: [ trunk ]
env:
CARGO_TERM_COLOR: always
jobs:
cargo-test:
runs-on: ubuntu-latest
strategy:
matrix:
features:
- default
- rustc-hash
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test --no-default-features --features '${{ matrix.features }}'