Skip to content

feat: Move data type and retrieval crates into hc_data #8

feat: Move data type and retrieval crates into hc_data

feat: Move data type and retrieval crates into hc_data #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
env:
RUSTFLAGS: -Dwarnings
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
name: "Test (${{ matrix.os }})"
runs-on: ${{ matrix.os }}
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --verbose --workspace
- name: Test
run: cargo test --verbose --workspace
- name: Lint
run: cargo clippy --verbose --workspace