Skip to content

More refactoring of bermudan #148

More refactoring of bermudan

More refactoring of bermudan #148

Workflow file for this run

# Run CI for R using https://eddelbuettel.github.io/r-ci/
name: ci
on:
push:
pull_request:
env:
_R_CHECK_FORCE_SUGGESTS_: "false"
ADDED_PPAS: "ppa:edd/misc"
jobs:
ci:
strategy:
matrix:
include:
- {os: macOS-latest}
- {os: ubuntu-latest}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: eddelbuettel/github-actions/r-ci-setup@master
- name: Bootstrap
run: ./run.sh bootstrap
- name: Dependencies
run: ./run.sh install_deps
- name: Linux Dependencies
if: runner.os == 'linux'
run: ./run.sh install_aptget libquantlib0-dev libboost-dev
- name: Test
run: ./run.sh run_tests
#- name: Coverage
# if: ${{ matrix.os == 'ubuntu-latest' }}
# run: ./run.sh coverage