mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
133 lines
3.5 KiB
YAML
133 lines
3.5 KiB
YAML
name: ci
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**'
|
|
- '!/*.md'
|
|
- '!/docs/**'
|
|
- "!/LICENSE-*"
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**'
|
|
- '!/*.md'
|
|
- '!/docs/**'
|
|
- "!/LICENSE-*"
|
|
jobs:
|
|
smoke:
|
|
name: Quick Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: minimal
|
|
override: true
|
|
- uses: Swatinem/rust-cache@v1
|
|
- name: Default features
|
|
run: cargo check --workspace --all-targets
|
|
- name: All features
|
|
run: cargo check --workspace --all-targets --all-features
|
|
- name: No-default features
|
|
run: cargo check --workspace --all-targets --no-default-features
|
|
test:
|
|
name: Test
|
|
needs: smoke
|
|
strategy:
|
|
matrix:
|
|
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
|
rust: ["stable"]
|
|
continue-on-error: ${{ matrix.rust != 'stable' }}
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ matrix.rust }}
|
|
profile: minimal
|
|
override: true
|
|
- uses: Swatinem/rust-cache@v1
|
|
- name: Default features
|
|
run: cargo test --workspace
|
|
- name: All features
|
|
run: cargo test --workspace --all-features
|
|
- name: No-default features
|
|
run: cargo test --workspace --no-default-features
|
|
msrv:
|
|
name: "Check MSRV: 1.53.0"
|
|
needs: smoke
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: 1.53.0 # MSRV
|
|
profile: minimal
|
|
override: true
|
|
- uses: Swatinem/rust-cache@v1
|
|
- name: Default features
|
|
run: cargo check --workspace --all-targets
|
|
- name: All features
|
|
run: cargo check --workspace --all-targets --all-features
|
|
- name: No-default features
|
|
run: cargo check --workspace --all-targets --no-default-features
|
|
docs:
|
|
name: Docs
|
|
needs: smoke
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: minimal
|
|
override: true
|
|
- uses: Swatinem/rust-cache@v1
|
|
- name: Check documentation
|
|
env:
|
|
RUSTDOCFLAGS: -D warnings
|
|
run: cargo doc --no-deps --document-private-items --workspace
|
|
rustfmt:
|
|
name: rustfmt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
profile: minimal
|
|
override: true
|
|
components: rustfmt
|
|
- uses: Swatinem/rust-cache@v1
|
|
- name: Check formatting
|
|
run: cargo fmt --all -- --check
|
|
clippy:
|
|
name: clippy
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: 1.53.0 # MSRV
|
|
profile: minimal
|
|
override: true
|
|
components: clippy
|
|
- uses: Swatinem/rust-cache@v1
|
|
- uses: actions-rs/clippy-check@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
args: --workspace --all-features --all-targets -- -D warnings
|