-
Notifications
You must be signed in to change notification settings - Fork 5
46 lines (42 loc) · 1.4 KB
/
package-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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