Skip to content

Merge pull request #581 from kubo39/update-ci-config #95

Merge pull request #581 from kubo39/update-ci-config

Merge pull request #581 from kubo39/update-ci-config #95

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: CI
runs-on: ubuntu-20.04
strategy:
matrix:
dc: [dmd-latest, ldc-latest]
steps:
- uses: actions/checkout@v4
- name: Install D Compiler
uses: dlang-community/setup-dlang@v2
with:
compiler: ${{ matrix.dc }}
- uses: actions/cache@v4
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"