mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
ci: add dummy jobs to required workflows (#2905)
This commit is contained in:
7
.github/workflows/bench.yml
vendored
7
.github/workflows/bench.yml
vendored
@ -66,3 +66,10 @@ jobs:
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- name: Check if benchmarks build
|
||||
run: cargo bench --all --all-features --all-targets --no-run
|
||||
|
||||
bench-success:
|
||||
name: bench success
|
||||
needs: bench-check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo Success!
|
||||
|
||||
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@ -51,3 +51,10 @@ jobs:
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- name: Check if documentation builds
|
||||
run: RUSTDOCFLAGS="-D warnings" cargo doc --all --no-deps --all-features --document-private-items
|
||||
|
||||
lint-success:
|
||||
name: lint success
|
||||
runs-on: ubuntu-latest
|
||||
needs: [lint, doc-lint]
|
||||
steps:
|
||||
- run: echo Success!
|
||||
|
||||
7
.github/workflows/fuzz.yml
vendored
7
.github/workflows/fuzz.yml
vendored
@ -61,3 +61,10 @@ jobs:
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
files: lcov.info
|
||||
flags: fuzz-tests
|
||||
|
||||
fuzz-success:
|
||||
name: fuzz success
|
||||
runs-on: ubuntu-latest
|
||||
needs: all
|
||||
steps:
|
||||
- run: echo Success!
|
||||
|
||||
7
.github/workflows/integration.yml
vendored
7
.github/workflows/integration.yml
vendored
@ -89,3 +89,10 @@ jobs:
|
||||
--debug.tip 0x91c90676cab257a59cd956d7cb0bceb9b1a71d79755c23c7277a0697ccfaf8c4 \
|
||||
--debug.max-block 100000 \
|
||||
--debug.terminate
|
||||
|
||||
integration-success:
|
||||
name: integration success
|
||||
runs-on: ubuntu-latest
|
||||
needs: [test, sync]
|
||||
steps:
|
||||
- run: echo Success!
|
||||
|
||||
7
.github/workflows/unit.yml
vendored
7
.github/workflows/unit.yml
vendored
@ -93,3 +93,10 @@ jobs:
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- name: Run doctests
|
||||
run: cargo test --doc --all --all-features
|
||||
|
||||
unit-success:
|
||||
name: unit success
|
||||
runs-on: ubuntu-latest
|
||||
needs: [test, eth-blockchain, doc-test]
|
||||
steps:
|
||||
- run: echo Success!
|
||||
|
||||
Reference in New Issue
Block a user