use insert(0, path) instead of append when modifying sys.path #3
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: Holopatcher Install Test | |
on: [push, pull_request] | |
jobs: | |
install-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.7' | |
- name: Install holopatcher | |
run: pip install ./scripts/holopatcher | |
- name: Test pykotor installation | |
run: python -c "import pykotor" | |
- name: Test holopatcher installation | |
run: python -c "import holopatcher" |