Skip to content

Commit

Permalink
Avoid broken actions-rs/clippy-check
Browse files Browse the repository at this point in the history
We've lately started seeing actions-rs/clippy-check#167 in our own CI. As the
actions-rs/clippy-check has not been updated since 2020 I'm going to say it's
abandoned.

Signed-off-by: Brian L. Troutwine <[email protected]>
  • Loading branch information
blt committed Sep 14, 2022
1 parent 3bf9ddf commit ec12ffb
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 27 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,29 @@ jobs:
command: fmt
args: --all -- --check

clippy_check:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Install protobuf (Apt)
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
if: matrix.os == 'ubuntu-latest'
- name: Install protobuf (Brew)
run: brew install protobuf
if: matrix.os == 'macos-latest'
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --features

integration-test:
name: Integration Tests
runs-on: ${{ matrix.os }}
Expand Down
27 changes: 0 additions & 27 deletions .github/workflows/clippy.yml

This file was deleted.

0 comments on commit ec12ffb

Please sign in to comment.