Skip to content

Adding tests to Github CI #20 #19

Adding tests to Github CI #20

Adding tests to Github CI #20 #19

Workflow file for this run

name: CI Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install packages
run: sudo scripts/ci/install.sh
- name: Submodules
run: git submodule update --init dedicated_executor eth2_libp2p
- name: Build
run: cargo build --release
- name: Test
run: cargo test --release