summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/test.yml')
-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