Skip to content

Commit d277ac4

Browse files
committed
ci: add workflow for build and wheel installation
1 parent 5da7b97 commit d277ac4

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build and install
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: ["3.11", "3.x"]
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: ${{ matrix.python-version }}
16+
- run: pip install -U pip build
17+
- name: Build
18+
run: python -m build
19+
- name: Install
20+
run: pip install dist/*.whl

0 commit comments

Comments
 (0)