Merge pull request #250 from Geod24/github-actions

Add a workflow to test on Musl
This commit is contained in:
Sönke Ludwig 2021-01-18 16:17:19 +01:00 committed by GitHub
commit 4c9e2e7fac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

30
.github/workflows/musl.yml vendored Normal file
View file

@ -0,0 +1,30 @@
name: Musl tests
on:
pull_request:
branches:
- master
push:
branches:
- master
- github_actions
jobs:
main:
name: Musl tests
strategy:
fail-fast: false
matrix:
dc: [ dmd, ldc ]
include:
- { dc: dmd, dcname: dmd }
- { dc: ldc, dcname: ldc2 }
runs-on: ubuntu-latest
container: alpine
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: apk add --no-cache build-base dub ${{ matrix.dc }}
- name: Run tests
run: dub test --compiler=${{ matrix.dcname }}