@@@ wip: grow table capacity #23
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: 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 -j | |
- name: test | |
run: make -j test | |
- name: lint | |
run: make lint | |
- 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 | |
- name: everythong (disabled) | |
# ubuntu-latest uses an old version of clang-format, so we need to install a newer version | |
run: make -j all || true |