Skip to content

Compile to web assembly using Emscripten #50

Compile to web assembly using Emscripten

Compile to web assembly using Emscripten #50

Workflow file for this run

name: Test foma
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: dependencies
run: |
sudo apt-get -qy update
sudo apt-get -qfy install --no-install-recommends cmake
- name: build with sanitizer
run: cd foma && export CFLAGS="-g3 -Wall -fsanitize=address" && cmake . && make -j
- name: run tests
run: cd foma/tests && PATH=../:$PATH ./run.sh