Skip to content

add constructor for btcollisionworld #1

add constructor for btcollisionworld

add constructor for btcollisionworld #1

Workflow file for this run

name: tst
on: on: workflow_dispatch

Check failure on line 2 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
jobs:
build:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '^3.5'
- uses: mymindstorm/setup-emsdk@v8
with:
version: 'latest'
- run: emcc -v
- run: python -V
- run: cmake --version
- run: ${{ matrix.make || 'make' }} --version
- run: cmake -B builds -DCLOSURE=1 ${{ matrix.cmake-args }}
- run: cmake --build builds -- VERBOSE=1
- run: npm ci
- name: Test Ammo Javascript
run: npx ava
env:
AMMO_BUILD: builds/ammo.js
- name: Test Ammo WebAssembly
run: npx ava
env:
AMMO_BUILD: builds/ammo.wasm.js
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
include:
- os: windows-latest
cmake-args: -G 'MinGW Makefiles'
make: mingw32-make