Update the boojum cli tool to support boojum and pull data from l1 #55
Workflow file for this run
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: "Test" | |
on: | |
pull_request: | |
jobs: | |
test: | |
name: Test build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
id: setup-rust | |
with: | |
rustflags: "" | |
- name: Print used Rust versions | |
run: | | |
echo "Rustc version: ${{ steps.setup-rust.outputs.rustc-version }}" | |
echo "Cargo version: ${{ steps.setup-rust.outputs.cargo-version }}" | |
echo "Rustup version: ${{ steps.setup-rust.outputs.rustup-version }}" | |
- run: cargo build |