uasm 1.0.9+2.57

A library to build the UASM compiler, for usage in build scripts.
Documentation
name: Cargo Build & Test

on:
  push:
    branches:
      - "master"
  pull_request:
    branches:
      - "master"

env: 
  CARGO_TERM_COLOR: always

jobs:
  build_and_test:
    name: Build & Test
    runs-on: ubuntu-latest
    strategy:
      matrix:
        toolchain:
          - stable
    steps:
      - uses: actions/checkout@v4
        with:
          submodules: true
      - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
      - run: cargo build --verbose
      - run: cargo test --verbose