Adding seismic transaction #26
Workflow file for this run
This file contains 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: Seismic CI | |
on: | |
push: | |
branches: [ seismic ] | |
pull_request: | |
branches: [ seismic ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
CARGO_NET_GIT_FETCH_WITH_CLI: true | |
jobs: | |
rustfmt: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- run: cargo fmt --all --check | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "build-cache" | |
- name: Install SSH Keys | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.ACTIONS_MANTLE_SSH_ED25519 }} | |
${{ secrets.ACTIONS_SFORGESTD_SSH_ED25519 }} | |
${{ secrets.ACTIONS_SALLOYCORE_SSH_ED25519 }} | |
${{ secrets.ACTIONS_SREVM_SSH_ED25519 }} | |
${{ secrets.ACTIONS_SREVMINSPECTORS_SSH_ED25519 }} | |
- name: cargo build | |
run: cargo build | |
- name: cargo check warnings | |
run: RUSTFLAGS="-D warnings" cargo check | |
- name: cargo test | |
run: cargo test |