fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit e1b01066a9b1eb0c72ca1ef9e1888b9d2dc1d8b5 parent db2bdcd4b278202e33a4aae5924e09a712eacce4 Author: John Hawthorn <john@hawthorn.email> Date: Sat, 17 Aug 2019 22:16:27 -0700 Add CI job to build under Alpine Linux (#122) This way we are testing against musl Diffstat:
| M | .github/workflows/test.yml | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml @@ -22,6 +22,15 @@ jobs: run: make && make test env: CC: ${{ matrix.compiler }} + test_alpine: + name: Test on Alpine Linux + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Compile and run tests + uses: docker://alpine + with: + args: sh -c "apk add build-base && make && make test" acceptance_test: name: Acceptance Tests runs-on: ubuntu-latest