This repository was archived by the owner on Oct 24, 2025. It is now read-only.
README: Mark project as no longer active #94
This file contains hidden or 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: D | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| dub_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v3 | |
| - name: Setup D compiler | |
| uses: dlang-community/setup-dlang@v1.3.0 | |
| with: | |
| compiler: ldc-1.32.0 | |
| - name: Install deps | |
| run: | | |
| sudo apt-get install libcurl4-openssl-dev liblmdb-dev libxxhash-dev libzstd-dev libgit2-dev libdbus-1-dev | |
| - name: Build & Test | |
| run: | | |
| dub test |