Skip to content

Remove vscode settings files #10

Remove vscode settings files

Remove vscode settings files #10

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: D
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
test:
name: Build and Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] # TODO: provision gmp.lib using https://github.com/marketplace/actions/run-vcpkg and then add ‘windows-latest’ to list of os
dc:
- dmd-latest
- ldc-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dlang-community/[email protected]
with:
compiler: ${{ matrix.dc }}
- name: 'Provision dependencies via APT'
run: |
sudo apt install -y llvm
llvm-symbolizer --version
- name: 'Build & Test'
run: |
dub build
dub test