improved gc adds different spaces in beginning of heap to reduce dead… #298
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: make check test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
run: git clone https://github.com/reginaldford/sms | |
- name: Initialize and update submodules | |
working-directory: ./sms | |
run: git submodule update --recursive --init | |
- name: Run make check | |
working-directory: ./sms | |
run: make check | |