Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c696950

Browse files
Add workflow with PyPI check
1 parent 3682c26 commit c696950

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/pypi.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: PyPI
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
pip:
10+
name: "PyPI checks"
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: "Checkout sources"
15+
uses: actions/checkout@v3
16+
17+
- name: "Set up Python 3.9"
18+
uses: actions/setup-python@v4
19+
with:
20+
python-version: "3.9"
21+
22+
- name: "Install package"
23+
run: pip install uplot-python
24+
25+
- name: "Import uplot"
26+
run: python -c "import uplot"

0 commit comments

Comments
 (0)