This way we are testing against musl
| ... | ... |
@@ -22,6 +22,15 @@ jobs: |
| 22 | 22 |
run: make && make test |
| 23 | 23 |
env: |
| 24 | 24 |
CC: ${{ matrix.compiler }}
|
| 25 |
+ test_alpine: |
|
| 26 |
+ name: Test on Alpine Linux |
|
| 27 |
+ runs-on: ubuntu-latest |
|
| 28 |
+ steps: |
|
| 29 |
+ - uses: actions/checkout@v1 |
|
| 30 |
+ - name: Compile and run tests |
|
| 31 |
+ uses: docker://alpine |
|
| 32 |
+ with: |
|
| 33 |
+ args: sh -c "apk add build-base && make && make test" |
|
| 25 | 34 |
acceptance_test: |
| 26 | 35 |
name: Acceptance Tests |
| 27 | 36 |
runs-on: ubuntu-latest |