Skip to content

Commit

Permalink
Add CI job to build under Alpine Linux (#122)
Browse files Browse the repository at this point in the history
This way we are testing against musl
  • Loading branch information
jhawthorn committed Aug 18, 2019
1 parent b7ff1a6 commit b56354b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -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
Expand Down

0 comments on commit b56354b

Please sign in to comment.