mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-26 02:51:08 -05:00
152 lines
4 KiB
YAML
152 lines
4 KiB
YAML
|
name: ci
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- '**'
|
||
|
- '!/*.md'
|
||
|
- '!/docs/**'
|
||
|
- "!/LICENSE-*"
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
paths:
|
||
|
- '**'
|
||
|
- '!/*.md'
|
||
|
- '!/docs/**'
|
||
|
- "!/LICENSE-*"
|
||
|
schedule:
|
||
|
- cron: '3 3 3 * *'
|
||
|
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
|
||
|
- 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", "beta"]
|
||
|
include:
|
||
|
- os: ubuntu-latest
|
||
|
rust: "nightly"
|
||
|
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
|
||
|
- 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.44.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.44.0 # MSRV
|
||
|
profile: minimal
|
||
|
- 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
|
||
|
- 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
|
||
|
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.44.0 # MSRV
|
||
|
profile: minimal
|
||
|
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
|
||
|
clippy-next:
|
||
|
name: clippy (next)
|
||
|
needs: clippy
|
||
|
continue-on-error: true
|
||
|
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
|
||
|
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
|