Fix Bugzilla 24872 - Assigning non-copyable value to array has no effect #3782
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: Build D compiler using dub | |
on: | |
- pull_request | |
- push | |
jobs: | |
test: | |
name: Build D compiler using dub | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Host D compiler | |
uses: dlang-community/setup-dlang@v1 | |
- name: Invoke dub | |
run: dub run dmd:compiler -- --version |