mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-05 12:00:17 +00:00
746ec1a504
- Move fisher.fish to functions directory. - Add deprecation warning. Close #651
23 lines
503 B
YAML
23 lines
503 B
YAML
name: CI
|
|
|
|
on: push
|
|
|
|
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 Tools
|
|
run: |
|
|
source $GITHUB_WORKSPACE/functions/fisher.fish
|
|
fisher install $GITHUB_WORKSPACE jorgebucaran/fishtape
|
|
fishtape tests/*.fish
|
|
shell: fish {0}
|