Skip to content

Commit

Permalink
CI: Remove actions-rs
Browse files Browse the repository at this point in the history
Not required, GitHub actions ships with its own Rust
installation.

Signed-off-by: Christopher N. Hesse <raymanfx@gmail.com>
  • Loading branch information
raymanfx committed Apr 14, 2024
1 parent de41bab commit fe26f56
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt
- name: Run rustfmt
run: cargo fmt -- --check

Expand All @@ -36,13 +29,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: clippy
- name: Run clippy
continue-on-error: true
run: cargo clippy -- -D warnings
Expand All @@ -53,12 +39,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Run tests
run: cargo test --manifest-path=eye/Cargo.toml

Expand All @@ -68,12 +48,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Check
run: cargo check
- name: Check examples
Expand All @@ -96,11 +70,5 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- name: Check
run: cargo check --manifest-path=eye/Cargo.toml ${{ matrix.features }}

0 comments on commit fe26f56

Please sign in to comment.