Build Check #395
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
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
schedule: | |
- cron: '26 02 * * *' | |
name: Build Check | |
jobs: | |
build-check: | |
runs-on: ${{ matrix.config.os }} | |
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {os: macOS-latest} | |
- {os: windows-latest} | |
- {os: ubuntu-latest} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified | |
- uses: r-lib/actions/setup-r@v2 | |
- name: Install dependencies (Ubuntu) | |
if: matrix.config.os == 'ubuntu-latest' | |
run: sudo apt install build-essential libcurl4-gnutls-dev libxml2-dev libssl-dev | |
- name: Install lxml using the binary wheel | |
run: | | |
pip --version | |
pip install --prefer-binary lxml | |
- name: Install testing dependencies | |
run: pip install pytest | |
- name: Set CRAN repository to @CRAN@ to test behavior on systems with no default repos | |
run: | | |
cp test/Rprofile.site ~/.Rprofile | |
- name: Test package installation | |
run: pip install . | |
- name: Package tests | |
run: pytest -v |