-
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
0 parents
commit e19073e
Showing
27 changed files
with
3,691 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
format: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Update Rust | ||
run: rustup update nightly && rustup default nightly | ||
- name: Install rustfmt | ||
run: rustup component add rustfmt | ||
- run: cargo fmt -- --check | ||
|
||
lint: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Update Rust | ||
run: rustup update stable && rustup default stable | ||
- name: Install clippy | ||
run: rustup component add clippy | ||
- run: cargo clippy --all-features -- --deny warnings | ||
|
||
test: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Update Rust | ||
run: rustup update stable && rustup default stable | ||
- run: cargo test --all-features | ||
|
||
test-examples: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Update Rust | ||
run: rustup update stable && rustup default stable | ||
- run: cargo test --all-features --examples | ||
|
||
docs: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Update Rust | ||
run: rustup update stable && rustup default stable | ||
- run: cargo doc | ||
|
||
msrv: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Update Rust | ||
run: rustup update stable && rustup default stable | ||
- name: Install cargo-binstall | ||
run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash | ||
- name: Install cargo-msrv | ||
run: cargo binstall -y --version 0.16.0-beta.23 cargo-msrv | ||
- name: Verify the MSRV | ||
run: cargo msrv verify --output-format minimal --all-features |
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 @@ | ||
target/ |
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,15 @@ | ||
# Unstable settings | ||
condense_wildcard_suffixes = true | ||
format_code_in_doc_comments = true | ||
format_macro_matchers = true | ||
format_strings = true | ||
group_imports = "StdExternalCrate" | ||
hex_literal_case = "Upper" | ||
imports_granularity = "Item" | ||
newline_style = "Unix" | ||
normalize_comments = true | ||
normalize_doc_attributes = true | ||
reorder_impl_items = true | ||
use_field_init_shorthand = true | ||
wrap_comments = true | ||
version = "Two" |
Oops, something went wrong.