Skip to content

remove Rf_applyClosure and use parse_version #213

remove Rf_applyClosure and use parse_version

remove Rf_applyClosure and use parse_version #213

Workflow file for this run

name: Test radian
on: [push, pull_request]
env:
RADIAN_NO_INPUTHOOK: 1
jobs:
cleanup:
name: Cancel Previous Runs
runs-on: ubuntu-latest
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
pytest:
name: ${{ matrix.os }} r-${{ matrix.r }} py-${{ matrix.python }}
strategy:
fail-fast: false
matrix:
r: [latest]
python: [3.8]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: ${{ matrix.python }}
- name: Install rchitect
run: python -m pip install -e .[test]
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.r }}
- name: Install reticulate and askpass
run: Rscript -e "install.packages(c('reticulate', 'askpass'))"
- name: Install radian and run tests
shell: bash
run: |
git clone https://github.com/randy3k/radian
cd radian
python -m pip install -e .[test]
python -m pip install jedi==0.17.2
pytest -s