Fix broken action

This commit is contained in:
Jorge Bucaran 2020-08-12 19:40:49 +09:00 committed by GitHub
parent 297c6b77c7
commit e2374589ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +1,16 @@
name: Continuous Integration name: CI
on: on: push
push:
branches: [master]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install dependencies - run: |
run: |
sudo add-apt-repository -y ppa:fish-shell/nightly-master sudo add-apt-repository -y ppa:fish-shell/nightly-master
sudo apt-get update sudo apt-get update
sudo apt-get -y install fish sudo apt-get -y install fish
- name: Fetch and validate fisher install - run: |
run: |
curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish curl https://git.io/fisher --create-dirs -sLo ~/.config/fish/functions/fisher.fish
fish -c "fisher -v && fisher -h" fish -c "fisher -v && fisher -h"