-
-
Notifications
You must be signed in to change notification settings - Fork 283
52 lines (47 loc) · 1.14 KB
/
test.yaml
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
47
48
49
50
51
52
name: test
on:
pull_request:
branches:
- main
push:
branches:
- main
- bugfix/*
- feature/*
jobs:
sdist:
name: build sdist wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
make preprocess
python -m pip install --upgrade pip
python -m pip install build setuptools wheel
python -m build --sdist
- uses: actions/upload-artifact@v3
with:
path: ./dist/*.tar.gz
bdist:
name: build bdist wheels and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-11, windows-2019]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v2
with:
platforms: all
# macOS make is too old
- if: runner.os == 'macOS'
run: brew install make
- name: Build and test wheels
uses: pypa/[email protected]
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl