Skip to content

Merge pull request #45 from a16z/fix/combine-lookups-increment #173

Merge pull request #45 from a16z/fix/combine-lookups-increment

Merge pull request #45 from a16z/fix/combine-lookups-increment #173

Workflow file for this run

name: Build and Test Spartan
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: rustup default nightly
- name: Install rustfmt Components
run: rustup component add rustfmt
- name: Install clippy
run: rustup component add clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Build examples
run: cargo build --examples --verbose