Skip to content

Commit 38843d1

Browse files
Added tests
1 parent f24a97d commit 38843d1

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
jobs:
2+
test-manylinux:
3+
runs-on: ubuntu-latest
4+
container: quay.io/pypa/manylinux2014_x86_64
5+
steps:
6+
- uses: actions/checkout@v4
7+
8+
- name: Install Python
9+
run: |
10+
/opt/python/cp310-cp310/bin/pip install --upgrade pip
11+
/opt/python/cp310-cp310/bin/pip install pmma==5.0.0
12+
13+
- name: Run tests
14+
run: |
15+
/opt/python/cp310-cp310/bin/python -c "import yourmodule; print(yourmodule.__version__)"

0 commit comments

Comments
 (0)