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

Re-organize repo and relayer gadget service #183

Re-organize repo and relayer gadget service

Re-organize repo and relayer gadget service #183

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-2022-12-26
components: clippy
override: true
- name: Install toolchain
id: toolchain
uses: actions-rs/toolchain@master
with:
profile: minimal
toolchain: nightly-2022-12-26
target: wasm32-unknown-unknown
- name: Install protobuf-compiler
run: sudo apt-get install protobuf-compiler
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Test workspace
run: cargo test --package pallet-eth2-light-client
- name: Clippy
run: cargo clippy --package pallet-eth2-light-client -- -D warnings