pe: Limit to 96 sections when selecting section index, not during loa… #232
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: D-dmd | |
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 | |
- name: 'Trace' | |
run: dub build --compiler=dmd -b trace | |
- name: 'Example' | |
run: dub build --compiler=dmd :simple |