Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Updates to ethereum-types, pallet, and client implementation #146

Updates to ethereum-types, pallet, and client implementation

Updates to ethereum-types, pallet, and client implementation #146

Workflow file for this run

name: Test and Check
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- name: Check workspace
run: cargo check --tests
- name: Test workspace
run: cargo test --package pallet-eth2-light-client
- name: Clippy
run: cargo clippy --package pallet-eth2-light-client -- -D warnings