wrapped2d 0.4.2

Rust binding for Box2D
Documentation
name: Build and Test

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Install cmake
      run: sudo apt-get install cmake
    - name: Checkout submodules
      run: |
        git submodule init
        git submodule update
    - name: Build
      run: cargo build --all-features --verbose
    - name: Run tests
      run: cargo test --all-features --verbose