Revert the use of countDocuments, as the current implementation is bu… #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: CI | |
runs-on: ubuntu-latest | |
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 build | |
dub test |