Add an input file key to disable three body interaction in the DPS in… #577
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
# Builds oxDNA and checks binary runs for a simple MD run | |
# Runs on every commit | |
name: Linux CPU Build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
mkdir build | |
pushd build | |
cmake .. -DCUDA=0 | |
make -j2 | |
popd | |
- name: Run Simple Test Script | |
run: | | |
pushd build | |
make test_run |