Add basic CI, move broken bins to broken so make test succeeds #2
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: C/C++ CI | |
on: | |
push: | |
# branches: [ $default-branch ] | |
pull_request: | |
branches: [ $default-branch ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install libgmp-dev | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgmp-dev | |
- uses: actions/checkout@v4 | |
- name: make | |
run: make | |
- name: make test | |
run: make test |