-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (33 loc) · 1 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
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
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
- name: Install lxml using the binary wheel
run: |
pip --version
pip install --prefer-binary lxml
- name: Install testing dependencies
run: pip install pytest
- name: Test package installation
run: pip install .
- name: Package tests
run: pytest -v