Skip to content

Commit

Permalink
fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
fgimenez committed May 30, 2024
1 parent f9b3730 commit 8efc684
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 39 deletions.
1 change: 0 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
run: |
cargo nextest run \
--locked \
--workspace \
-E 'kind(test)'
integration-success:
Expand Down
19 changes: 0 additions & 19 deletions .github/workflows/lint-actions.yml

This file was deleted.

19 changes: 2 additions & 17 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,6 @@ env:
CARGO_TERM_COLOR: always

jobs:
clippy-binaries:
name: clippy
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@clippy
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run:
cargo clippy --bin alphanet --workspace --features "asm-keccak jemalloc jemalloc-prof min-error-logs min-warn-logs min-info-logs min-debug-logs min-trace-logs"
env:
RUSTFLAGS: -D warnings

clippy:
name: clippy
runs-on: ubuntu-latest
Expand All @@ -35,7 +20,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo clippy --workspace --examples --tests --benches --all-features
- run: cargo clippy --examples --tests --benches --all-features
env:
RUSTFLAGS: -D warnings

Expand Down Expand Up @@ -63,7 +48,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo build --bin alphanet --workspace
- run: cargo build
env:
RUSTFLAGS: -D warnings

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
run: |
cargo nextest run \
--locked \
--workspace \
-E "kind(lib) | kind(bin) | kind(proc-macro)"
doc:
Expand All @@ -49,7 +48,7 @@ jobs:
with:
cache-on-failure: true
- name: Run doctests
run: cargo test --doc --workspace
run: cargo test --doc

unit-success:
name: unit success
Expand Down

0 comments on commit 8efc684

Please sign in to comment.