Skip to content

Remove doc tests from CI #7

Remove doc tests from CI

Remove doc tests from CI #7

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
ci:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install cargo-run-bin
run: cargo install cargo-run-bin --version 1.7.3
- name: Check formatting
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --frozen
- name: Run tests with coverage
run: cargo test-cov
- name: Build
run: cargo build --release