Fix: Makefile targets fail when project path contains spaces #2104
Workflow file for this run
This file contains hidden or 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: Test | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12.3' | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| python3-setuptools \ | |
| python3-virtualenv \ | |
| python3-pip \ | |
| libxml2-dev \ | |
| libxslt-dev | |
| - name: Install python dependencies | |
| run: | | |
| pip install --upgrade pip | |
| pip install --upgrade setuptools | |
| make install-python | |
| - name: Test | |
| run: make test |