Skip to content

Adding tests to Github CI #20 #28

Adding tests to Github CI #20

Adding tests to Github CI #20 #28

Workflow file for this run

name: CI Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Cache repository
uses: actions/cache@v4
with:
path: .git
key: repository-dir
- uses: actions/checkout@v4
with:
submodules: true
- name: Install Rust
run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test --release tests::next_tick_with_instant_with_mainnet_config::_10_seconds_after_genesis