diff --git a/.github/workflows/d.yaml b/.github/workflows/d.yaml new file mode 100644 index 0000000..974a390 --- /dev/null +++ b/.github/workflows/d.yaml @@ -0,0 +1,18 @@ +name: D + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: dlang-community/setup-dlang@v1 + - name: 'Build' + run: dub build --compiler=dmd + - name: 'Test' + run: dub test --compiler=dmd \ No newline at end of file