Skip to content

Fixes #1274 Prevent crash of 0 simulated values in log scale #754

Fixes #1274 Prevent crash of 0 simulated values in log scale

Fixes #1274 Prevent crash of 0 simulated values in log scale #754

Workflow file for this run

name: Run Reporting Engine Tests under Linux
on:
pull_request:
paths-ignore:
- '*.md'
- '.github/workflows/codecov-nightly.yml'
- '.github/workflows/update-dev-website.yml'
- '.github/workflows/update-release-website.yml'
- '.github/workflows/pkgdown_setup.R'
- '_pkgdown.yml'
jobs:
build:
strategy:
fail-fast: false
matrix:
r_version: [4.1.0] #[3.6.3, 4.1.0]
os_version: [bionic] #[centos7, bionic]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
uses: docker/build-push-action@v2
with:
context: .
file: .github/workflows/Dockerfile
build-args: |
r_version=${{ matrix.r_version }}
os_version=${{ matrix.os_version }}
push: false
tags: |
ghcr.io/open-systems-pharmacology/tests_ospsuite.reportingengine-r${{ matrix.r_version }}-${{ matrix.os_version }}:latest