summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2019-08-17 22:16:27 -0700
committerGitHub <noreply@github.com>2019-08-17 22:16:27 -0700
commitb56354b1a6a8f4f6c1174697eedfc2e7e3e7bca9 (patch)
treee21527eeb100ccc595745f0c2bdeb92c524ed31e
parentb7ff1a61a845253fb090126c6cd9f29f028b66e6 (diff)
Add CI job to build under Alpine Linux (#122)
This way we are testing against musl
-rw-r--r--.github/workflows/test.yml9
1 files changed, 9 insertions, 0 deletions
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