spawning an addtional thread that does the shutdown in cases the shut… #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check | ||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
| - dev | ||
| jobs: | ||
| check: | ||
| name: Check | ||
| runs-on: ubuntu-22.04 | ||
| steps: | ||
| - name: Checkout sources | ||
| uses: actions/checkout@main | ||
| with: | ||
| submodules: true | ||
| - name: Install 1.59 toolchain | ||
| uses: actions-rs/toolchain@v1 | ||
| with: | ||
| toolchain: 1.85 | ||
| profile: minimal | ||
| override: true | ||
| - name: Run cargo check | ||
| uses: actions-rs/cargo@v1 | ||
| with: | ||
| command: check | ||
| args: --locked --all --benches --verbose --tests | ||
| - name: Run cargo check mio io | ||
| uses: actions-rs/cargo@v1 | ||
| with: | ||
| command: check | ||
| args: --locked --manifest-path crates/runtime/io/Cargo.toml --features "mio" --verbose | ||
| - name: Run cargo check evmbin | ||
| uses: actions-rs/cargo@v1 | ||
| with: | ||
| command: check | ||
| args: --locked -p evmbin --verbose | ||
| - name: Run validate chainspecs | ||
| run: ./scripts/actions/validate-chainspecs.sh | ||
| args: --locked --all --benches --verbose --tests | ||