forked from crate-ci/typos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
222 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# These settings are synced to GitHub by https://probot.github.io/apps/settings/ | ||
|
||
repository: | ||
description: Source code spell checker | ||
topics: rust cli code-quality spell-checker | ||
has_issues: true | ||
has_projects: false | ||
has_wiki: false | ||
has_downloads: true | ||
default_branch: master | ||
|
||
allow_squash_merge: true | ||
allow_merge_commit: true | ||
allow_rebase_merge: true | ||
|
||
# Manual: allow_auto_merge: true, see https://github.com/probot/settings/issues/402 | ||
delete_branch_on_merge: true | ||
|
||
labels: | ||
# Type | ||
- name: bug | ||
color: '#b60205' | ||
description: Not as expected | ||
- name: enhancement | ||
color: '#1d76db' | ||
description: Improve the expected | ||
# Flavor | ||
- name: question | ||
color: "#cc317c" | ||
description: Uncertainty is involved | ||
- name: breaking-change | ||
color: "#e99695" | ||
- name: good first issue | ||
color: '#c2e0c6' | ||
description: Help wanted! | ||
|
||
branches: | ||
- name: master | ||
protection: | ||
required_pull_request_reviews: | ||
required_approving_review_count: 1 | ||
dismiss_stale_reviews: false | ||
require_code_owner_reviews: false | ||
# Manual: required_conversation_resolution: true, see https://github.com/probot/settings/issues/458 | ||
required_status_checks: | ||
# Required. Require branches to be up to date before merging. | ||
strict: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Security audit | ||
on: | ||
pull_request: | ||
paths: | ||
- '**/Cargo.toml' | ||
- '**/Cargo.lock' | ||
push: | ||
paths: | ||
- '**/Cargo.toml' | ||
- '**/Cargo.lock' | ||
schedule: | ||
- cron: '3 3 3 * *' | ||
jobs: | ||
security_audit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- uses: actions-rs/audit-check@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
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 |
Oops, something went wrong.