Skip to content

@@@ wip

@@@ wip #31

Workflow file for this run

name: compiler CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./bytecode-vm-compiler/
steps:
- uses: actions/checkout@v4
- name: build
run: make
- name: test
run: make test
- name: lint
run: make lint-check
- name: ci
run: make -j ci
- name: format (disabled)
# ubuntu-latest uses an old version of clang-format, so we need to install a newer version
run: make format-check || true
# ubuntu-latest uses an old version of clang-format, so we need to install a newer version