Skip to content

Commit

Permalink
remove Makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Bond <[email protected]>
  • Loading branch information
loshz committed Jun 6, 2022
1 parent 0574792 commit 5e3da7c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 34 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,16 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
- run: make install-rust-tools
- run: make audit
- run: make lint
# Install cargo plugins.
- run: |
rustup component add rustfmt clippy
cargo install --locked cargo-deny
# Run audit tools.
- run: cargo deny check
# Run linters.
- run: |
cargo fmt -- --check
cargo clippy --tests -- --no-deps -D warnings
test:
runs-on: ubuntu-latest
Expand All @@ -30,4 +37,4 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
- run: make test
- run: cargo test --no-fail-fast
30 changes: 0 additions & 30 deletions Makefile

This file was deleted.

0 comments on commit 5e3da7c

Please sign in to comment.