procedural_modelling 0.1.0

A framework-agnostic Procedural Modelling crate.
Documentation
name: Rust

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Install Dependencies
      # alsa-sys deps: https://github.com/Spotifyd/spotifyd/issues/183#issuecomment-476384541 
      # libudev-sys: https://github.com/hecrj/coffee/issues/119
      run: sudo apt-get install -y libasound2-dev portaudio19-dev build-essential libpulse-dev libdbus-1-dev libudev-dev
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose