Merge pull request #121 from ardentsword/feature/default-move-to-home #30
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install Fish | |
| run: | | |
| sudo apt-add-repository -yn ppa:fish-shell/release-3 | |
| sudo apt-get update | |
| sudo apt-get install -y fish | |
| - name: Install Fisher & Fishtape | |
| run: curl -sL git.io/fisher | source && fisher install jorgebucaran/{fisher,fishtape} | |
| shell: fish {0} | |
| - name: Run Tests | |
| run: | | |
| $GITHUB_WORKSPACE/ && fisher install . | |
| fishtape test/*.fish | |
| shell: fish {0} |