We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f24a97d commit 38843d1Copy full SHA for 38843d1
.github/workflows/manylinux_test.yml
@@ -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
15
+ /opt/python/cp310-cp310/bin/python -c "import yourmodule; print(yourmodule.__version__)"
0 commit comments