Skip to content

WIP: Add CI

WIP: Add CI #24

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
build:
uses: ./.github/workflows/build.yml
test:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
path: build-artifacts
- run: |
ls
ls build-artifacts
ls build-artifacts/wasix-libc
echo "So far, so good"