chore: add ci (#12)

* Create rust.yml

* fmt
This commit is contained in:
Noah Citron 2022-09-04 21:14:20 -04:00 committed by GitHub
parent a0b0b78da5
commit c64ba5839b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 1 deletions

24
.github/workflows/rust.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Format
run: cargo fmt --check --verbose
- name: Run tests
run: cargo test --verbose

View File

@ -532,13 +532,13 @@ mod tests {
use ssz_rs::Vector;
use config::networks;
use crate::{
consensus::calc_sync_period,
rpc::{mock_rpc::MockRpc, Rpc},
types::Header,
ConsensusClient,
};
use config::networks;
async fn get_client() -> ConsensusClient<MockRpc> {
ConsensusClient::new(