Add missing include headers #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Checkout V8 | |
run: make v8-checkout | |
- name: Build V8 | |
run: make v8 | |
- name: Build Wasm | |
run: make wasm | |
- name: Run C++ tests | |
run: make cc | |
# TODO: C memory management seems to have broken entirely for yet unknown reasons | |
#- name: Run C tests | |
# run: make c |