Add some example models #20
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
on: [push, pull_request] | |
env: | |
PYTHON_MINIMUM_VERSION: "3.12" | |
jobs: | |
build_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
channels: conda-forge | |
- name: Install dependencies | |
run: | | |
$CONDA/bin/conda env update --file requirements.txt --name test | |
- name: Build | |
run: mkdir build && cd build && cmake .. && make | |
- name: Run test | |
run: ./build/tests/test_make_models |