Skip to content

feat: configuration improvements #1186

feat: configuration improvements

feat: configuration improvements #1186

Workflow file for this run

name: Tests in docs
on:
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
doc_unit_tests:
name: Documentation Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 25
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Cache Cargo Registry and Target Directory
uses: actions/[email protected]
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ github.workflow }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-${{ github.workflow }}
- name: Set up Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Set up Just
uses: extractions/setup-just@v1
- name: Test docs
run: just test-doc