mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 17:11:07 -05:00
124 lines
3.2 KiB
YAML
124 lines
3.2 KiB
YAML
name: ci
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**'
|
|
- '!/*.md'
|
|
- '!/docs/**'
|
|
- "!/LICENSE-*"
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- '**'
|
|
- '!/*.md'
|
|
- '!/docs/**'
|
|
- "!/LICENSE-*"
|
|
schedule:
|
|
- cron: '3 3 3 * *'
|
|
jobs:
|
|
ci:
|
|
name: CI
|
|
needs: [test, msrv, docs, rustfmt, clippy]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Done
|
|
run: exit 0
|
|
test:
|
|
name: Test
|
|
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: Build
|
|
run: cargo test --no-run --workspace --all-features
|
|
- 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.64.0"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: 1.64.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
|
|
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 --workspace --all-features --no-deps --document-private-items
|
|
rustfmt:
|
|
name: rustfmt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
- name: Install Rust
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
# Not MSRV because its harder to jump between versions and people are
|
|
# more likely to have stable
|
|
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.64.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 --allow deprecated
|