Skip to content

Allow building with vibe-core and requests 2.x.x #40

Allow building with vibe-core and requests 2.x.x

Allow building with vibe-core and requests 2.x.x #40

Workflow file for this run

name: Run all D Tests
on: [pull_request]
jobs:
test:
name: Dub Tests
strategy:
matrix:
dc: [dmd, ldc]
config: [default, requests-driver]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install D compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
- name: Run tests
shell: bash
env:
DC: ${{ matrix.dc }}
run: |
dub -q test --config=${{ matrix.config }}
dub build -b release --config=${{ matrix.config }}