Debug (Linux) #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Debug (Linux) | |
on: [workflow_dispatch] | |
jobs: | |
debug: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Zfp | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
architecture: x64 | |
- name: Install Zfpy Dependencies | |
run: | | |
python -m pip install cython | |
python -m pip install oldest-supported-numpy | |
- name: Install OpenMP | |
run: | | |
sudo apt-get update; sudo apt-get install -y libomp5 libomp-dev | |
- name: Setup Tmate Session | |
uses: mxschmitt/action-tmate@v3 |