Move files from conf.d to functions #10
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 | |
- workflow_dispatch | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Fish | |
run: | | |
sudo apt-add-repository -yu ppa:fish-shell/release-3 | |
sudo apt-get install -y fish | |
- name: Install Tools | |
shell: fish {0} | |
run: | | |
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher | |
fisher install $GITHUB_WORKSPACE jorgebucaran/fishtape | |
- name: Run tests | |
shell: fish {0} | |
run: fishtape tests/*.fish |