Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unmaintained github action #41

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 8 additions & 25 deletions .github/workflows/check-and-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup update stable && rustup default stable
- run: cargo --version --verbose && rustc --version
- run: cargo check
- run: cargo check --all-features

Expand All @@ -31,13 +27,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: clippy
override: true
- run: rustup update stable && rustup default stable
- run: rustup component add clippy
- run: cargo --version --verbose && cargo clippy -- --version
- run: cargo clippy --all-features -- -D warnings

format:
Expand All @@ -46,13 +38,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup update stable && rustup default stable
- run: rustup component add rustfmt
- run: cargo --version --verbose && cargo fmt -- --version
- run: cargo fmt --all -- --check

doc:
Expand All @@ -63,12 +51,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: cargo --version --verbose && rustc --version
- name: Check documentation
run: cargo doc --no-deps --all-features --document-private-items

Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup update stable && rustup default stable
- run: cargo --version --verbose && rustc --version
- name: Cache dependencies
uses: actions/cache@v2
env:
Expand Down
Loading