Add the option to change some parameters with command line options. #12
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: Build and Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
lfs: true | |
- name: Set up Git LFS | |
run: | | |
git lfs install | |
git lfs pull | |
- name: Fetch submodules | |
run: | | |
git submodule update --init --recursive | |
- name: Install dependencies | |
run: sudo apt-get install -y make gcc g++ | |
- name: Build | |
run: make build |