Install fish first

This commit is contained in:
Jorge Bucaran 2020-11-05 03:29:33 +09:00
parent e3ae2ed66a
commit 882e839110
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

View file

@ -1,19 +1,20 @@
name: CI name: CI
on: push on: push
jobs: jobs:
defaults: test:
run:
shell: fish {0}
build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: | - name: Install Fish
sudo add-apt-repository -y ppa:fish-shell/nightly-master run: |
sudo apt-add-repository -yn ppa:fish-shell/release-3
sudo apt-get update sudo apt-get update
sudo apt-get -y install fish sudo apt-get install -y fish
- run: |
curl -sL git.io/fisher | source && fisher install jorgebucaran/fisher - name: Install Fisher
fisher -v && fisher -h run: $GITHUB_WORKSPACE/ && source fisher.fish && fisher install .
shell: fish {0}