|
63 | 63 | run: cargo clippy --workspace --features dev -- -D warnings
|
64 | 64 | - name: clippy metrics
|
65 | 65 | run: cargo clippy --workspace --features metrics -- -D warnings
|
66 |
| - - name: clippy all |
67 |
| - run: cargo clippy --workspace --all-features -- -D warnings |
| 66 | +# - name: clippy all |
| 67 | +# run: cargo clippy --workspace --all-features -- -D warnings |
68 | 68 | - name: clippy test
|
69 | 69 | run: cargo clippy --workspace --tests -- -D warnings
|
70 |
| - - name: clippy test all |
71 |
| - run: cargo clippy --workspace --tests --all-features -- -D warnings |
72 |
| - |
73 |
| - integration-tests: |
74 |
| - needs: [ clippy ] |
75 |
| - if: | |
76 |
| - github.event.pull_request.draft == false && |
77 |
| - (github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true') |
78 |
| - name: Integration Tests |
79 |
| - timeout-minutes: 30 |
80 |
| - runs-on: ubuntu-latest |
81 |
| - strategy: |
82 |
| - fail-fast: false |
83 |
| - matrix: |
84 |
| - network: [ "mainnet" ] |
85 |
| - hardfork: [ "pre-bernoulli", "bernoulli", "curie", "darwin" ] |
86 |
| - rust: [ "1.81", "nightly-2024-07-07" ] |
87 |
| - |
88 |
| - steps: |
89 |
| - - uses: actions/checkout@v4 |
90 |
| - - name: checkout test data |
91 |
| - uses: actions/checkout@v4 |
92 |
| - with: |
93 |
| - repository: 'scroll-tech/block-testdata' |
94 |
| - path: 'testdata' |
95 |
| - sparse-checkout: '${{ matrix.network }}_blocks/${{ matrix.hardfork }}' |
96 |
| - - uses: dtolnay/rust-toolchain@master |
97 |
| - with: |
98 |
| - toolchain: ${{ matrix.rust }} |
99 |
| - - uses: Swatinem/rust-cache@v2 |
100 |
| - - name: Test ${{ matrix.network }} ${{ matrix.hardfork }} |
101 |
| - run: cargo run --release --package stateless-block-verifier -- run-file testdata/${{ matrix.network }}_blocks/${{ matrix.hardfork }}/* |
| 70 | +# - name: clippy test all |
| 71 | +# run: cargo clippy --workspace --tests --all-features -- -D warnings # scroll feature is broken now |
0 commit comments