Thanks to visit codestin.com
Credit goes to github.com

Skip to content

updated (https://github.com/bdwgc/bdwgc/commit/e849d641191ae853a469c5… #98

updated (https://github.com/bdwgc/bdwgc/commit/e849d641191ae853a469c5…

updated (https://github.com/bdwgc/bdwgc/commit/e849d641191ae853a469c5… #98

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-latest
arch: amd64
compiler: dmd-latest
- os: ubuntu-latest
arch: amd64
compiler: ldc-master
- os: ubuntu-24.04-arm
arch: arm64
compiler: ldc-master
- os: macos-latest
arch: arm64
compiler: ldc-master
- os: windows-latest
arch: amd64
compiler: dmd-latest
- os: windows-latest
arch: amd64
compiler: ldc-master
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: dlang-community/setup-dlang@v2
with:
compiler: ${{matrix.compiler}}
- uses: egor-tensin/vs-shell@v2
with:
arch: x64
- name: Testing
run: dub test
- name: Build examples
working-directory: examples
run: |
dub :example1 -q
dub :example2 -q
dub :example3 -q
dub :example4 -q