Skip to content

Initial framework for ReadArray on non-Marker types #11

Initial framework for ReadArray on non-Marker types

Initial framework for ReadArray on non-Marker types #11

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
ci:
strategy:
matrix:
rust: [stable]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
components: rustfmt
- run: cargo fmt -- --check
- run: cargo test --workspace --exclude smallsorts
- run: cargo build