improper gc action was making unit tests fail. fixed. #305
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 | |