We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63773c8 commit fbfc345Copy full SHA for fbfc345
.github/workflows/pythonpublish.yml
@@ -17,6 +17,19 @@ jobs:
17
run: |
18
python -m pip install --upgrade pip
19
pip install setuptools wheel twine
20
+ sudo pip install pytest
21
+ sudo apt-get update
22
+ sudo apt-get install -y gcc-multilib
23
+ sudo apt-get install -y zlib1g-dev
24
+ sudo apt-get install -y zlib1g-dev:i386
25
+ sudo apt-get install -y gcc
26
+ sudo apt-get install -y valgrind
27
+ git clone https://github.com/jmcnamara/libxlsxwriter.git
28
+ cd libxlsxwriter
29
+ make
30
+ sudo make install
31
+ cd ../
32
+ rm libxlsxwriter/ -rf
33
- name: Build and publish
34
env:
35
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
0 commit comments