Skip to content

Fix documentation spelling #109

Fix documentation spelling

Fix documentation spelling #109

Workflow file for this run

on: [push, pull_request]
name: check
jobs:
# Test, and also do other things like doctests and examples
detailed-test:
name: Test main target
runs-on: ubuntu-20.04
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Cache build files
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
~/.cargo/bin
cargo_target
key: detailed-test-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}-v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install toolchain (nightly)
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: false
- name: Install additional test dependencies
env:
CARGO_TARGET_DIR: cargo_target
run: ./scripts/install
- name: Run check script
run: ./scripts/check
# Test on all supported platforms
test:
needs: detailed-test
name: Test all other targets
strategy:
matrix:
os:
- ubuntu-20.04
- windows-2019
rust:
- stable
- beta
- 1.54.0
experimental:
- false
# Run a canary test on nightly that's allowed to fail
include:
- os: ubuntu-20.04
rust: nightly
experimental: true
# Don't bother retesting stable linux, we did it in the comprehensive test
exclude:
- os: ubuntu-20.04
rust: stable
experimental: false
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Cache build files
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: test-${{ matrix.os }}-${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.toml') }}
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Run tests
run: cargo test --package pretty_assertions