specjam 0.0.12

A tool spawns binary runner for testing the JAM spec
Documentation
name: CI
on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

concurrency:
  group: ${{ github.head_ref || github.run_id }}
  cancel-in-progress: true

jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2
      - uses: taiki-e/install-action@nextest

      - name: Install jamtestvectors
        run: git clone https://github.com/spacejamapp/jam-test-vectors --depth=1 jamtestvectors

      - name: Build the Binary
        run: cargo build --release --all-features

      - name: Format
        run: cargo fmt --check

      - name: Clippy
        run: cargo clippy --all -- -D warnings