Skip to content

Testing macos and windows runners #47

Testing macos and windows runners

Testing macos and windows runners #47

Workflow file for this run

name: CI Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: true
lfs: true
# - name: Git lfs pull
# working-directory: consensus-spec-tests
# run: git lfs pull
- name: Install Rust
run: rustup toolchain install stable --profile minimal
- uses: Swatinem/rust-cache@v2
- name: Run formatter
run: cargo fmt --check
- name: Run clippy
run: bash scripts/ci/clippy.bash
- name: Run tests
run: cargo test --release