From b56354b1a6a8f4f6c1174697eedfc2e7e3e7bca9 Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Sat, 17 Aug 2019 22:16:27 -0700 Subject: Add CI job to build under Alpine Linux (#122) This way we are testing against musl --- .github/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2057ece..c21bfc1 100644 --- 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 -- cgit v1.2.3