fzy

terminal fuzzy finder picker

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

commit 717ac18383f4d018f87afb82f2258417567f2303
parent 97a31ca045c1c440fadc3d9443fd78a3524f4a9b
Author: John Hawthorn <john@hawthorn.email>
Date:   Thu, 15 Aug 2019 15:30:39 -0700

Create CI workflow for GitHub actions (#120)


Diffstat:
A.github/workflows/test.yml | 40++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml @@ -0,0 +1,40 @@ +name: CI + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + test: + name: Test ${{ matrix.compiler }} on ${{ matrix.os }} + strategy: + matrix: + compiler: [gcc, clang] + os: [ubuntu-latest, macOS-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v1 + - name: Compile and run tests + run: make && make test + env: + CC: ${{ matrix.compiler }} + acceptance_test: + name: Acceptance Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Set up Ruby 2.6 + uses: actions/setup-ruby@v1 + with: + ruby-version: 2.6.x + - name: Install dependencies and compile + run: | + gem install bundler + make + cd test/acceptance && bundle install --jobs 4 --retry 3 + - name: Run acceptance tests + run: make acceptance