Make default to not be terrible. #11
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: Build Test | |
on: | |
push: | |
pull_request: | |
jobs: | |
Build-for-Linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install more dependencies | |
run: | | |
sudo apt-get install -y \ | |
make \ | |
build-essential | |
- name: Build | |
run: make test |