Skip to content

feat(docs): add doc_cfg for feature-specific items #48

feat(docs): add doc_cfg for feature-specific items

feat(docs): add doc_cfg for feature-specific items #48

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
# Setup
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
shared-key: "shared"
- uses: extractions/setup-just@v1
- run: cargo install cargo-get
- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-nextest
locked: true
# Build
- name: Build
run: cargo build --verbose
# Run tests
- name: Run unit tests
run: just test-unit
- name: Run integration tests
run: just test-int