Adding tests to Github CI #20 #19
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: 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 |