Fixes #1261 throw an error if data is not utf-8 encoded #747
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: 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 |