galm 0.3.1

GalM is pattern matching library.
Documentation
name: Build

# build timings
on: push

jobs:
  build:
    runs-on: ubuntu-latest
    container: debian:11
    steps:

    # Install
    - name: Install
      run: |
        apt-get update -y && apt-get upgrade -y
        apt-get install -y gcc curl git
        curl https://sh.rustup.rs -sSf | sh -s -- -y

    # Get Files
    - name: Get files
      uses: actions/checkout@v4

    # Build
    - name: Build
      run: /github/home/.cargo/bin/cargo build --verbose

    # Test
    - name: Run tests
      run: /github/home/.cargo/bin/cargo test --verbose

    # Command Test
    - name: GalM Command tests
      run: |
        /github/home/.cargo/bin/cargo build --example galm --release
        bash -e ./.github/scripts/galm_spec.sh