clean up v2 #421
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: main | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
Build: | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
matrix: | |
os: ["ubuntu-22.04", "macos-latest"] | |
python-version: ["3.7", "3.8", "3.9"] | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Set up Python Test Env and Python | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: test | |
python-version: "${{ matrix.python-version }}" | |
- name: CI Tests | |
shell: bash -l {0} | |
run: | | |
conda update --all --yes | |
conda config --set always_yes yes --set changeps1 no | |
conda info -a | |
conda install -c conda-forge r-xfun=0.27 r-rlang=1.1.0 r-extrafont | |
conda install -c conda-forge r-base=4.1.1 r-rmarkdown=2.13 r-ggplot2=3.3.5 r-plotly=4.10.0 pandoc=2.17.1.1 | |
conda install -c conda-forge regex | |
pip install pycodestyle | |
pip install .[all] | |
bash run_tests.sh |