Skip to content

add test

add test #9

Workflow file for this run

name: Test
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Setup Wasmer
uses: wasmerio/setup-wasmer@v3.1
with:
version: 'v4.2.3'
- name: prepare Onyx
run: |
wasmer --version
git clone https://github.com/onyx-lang/onyx --depth 1
cd onyx
git fetch origin v0.1.9-beta
git checkout v0.1.9-beta
source settings.sh
./build.sh compile install || echo a
cp -r ./dist /home/runner/.onyx
onyx version
- name: test
run: make test