Skip to content

Allow passing of WASM to emulator (#18) #43

Allow passing of WASM to emulator (#18)

Allow passing of WASM to emulator (#18) #43

Workflow file for this run

name: test
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
run_tests:
strategy:
matrix:
os: ['ubuntu-22.04', 'macos-12', 'macos-13-xlarge', 'windows-2022']
pyver: ['3.10', '3.11', '3.12']
runs-on:
${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyver }}
- name: Install
run: |
pip install -U pip flit wheel
flit install
- name: Run tests
run: python -m unittest test.test_emulator