Skip to content

Merge pull request #560 from dlang/WebFreak001-patch-1 #71

Merge pull request #560 from dlang/WebFreak001-patch-1

Merge pull request #560 from dlang/WebFreak001-patch-1 #71

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: CI
runs-on: ubuntu-20.04
strategy:
matrix:
dc: [dmd-latest, ldc-latest]
steps:
- uses: actions/checkout@v2
- name: Install D Compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
- uses: actions/cache@v2
with:
path: ~/.dub
key: ${{ matrix.dc }}-dub-${{ hashFiles('**/dub.selections.json') }}
restore-keys: |
${{ matrix.dc }}-dub-
- name: Run Tests
run: dub test --override-config="vibe-d:tls/openssl"