fzy

terminal fuzzy finder picker

git clone https://9o.is/git/fzy.git

commit b4b111bd8c280607303091aecb2784344785d864
parent 8ef1270d814cb658007d5183af86793acca0ab25
Author: John Hawthorn <john@hawthorn.email>
Date:   Sun,  6 Oct 2019 17:42:26 -0700

Update test.yml
Diffstat:
M.github/workflows/test.yml | 15+++++----------
1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml @@ -1,12 +1,6 @@ name: CI -on: - push: - branches: - - master - pull_request: - branches: - - master +on: [push, pull_request] jobs: test: @@ -25,12 +19,13 @@ jobs: test_alpine: name: Test on Alpine Linux runs-on: ubuntu-latest + container: docker://alpine steps: - uses: actions/checkout@v1 + - name: Install build dependencies + run: apk add build-base - name: Compile and run tests - uses: docker://alpine - with: - args: sh -c "apk add build-base && make && make test" + run: make && make test acceptance_test: name: Acceptance Tests runs-on: ubuntu-latest