Merge pull request #15 from yggdr/fix_paths_v2 #30
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: Test | |
on: push | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install xonsh | |
run: pip install xonsh | |
- name: Install xontrib | |
run: pip install . | |
- name: Test | |
run: xonsh -c 'xontrib load prompt_starship' |