tlang/.github/workflows/d.yml

38 lines
823 B
YAML
Raw Normal View History

2023-02-26 17:49:20 +00:00
# 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: [ "vardec_varass_dependency" ]
pull_request:
branches: [ "vardec_varass_dependency" ]
workflow_dispatch:
permissions:
contents: read
jobs:
2023-03-25 20:59:22 +00:00
test:
name: Build
2023-03-25 20:59:22 +00:00
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
2023-03-25 21:01:02 +00:00
dc: [dmd-2.101.0]
2023-03-25 20:59:22 +00:00
exclude:
- { os: macOS-latest, dc: dmd-2.085.0 }
2023-02-26 17:49:20 +00:00
2023-03-25 20:59:22 +00:00
runs-on: ${{ matrix.os }}
2023-02-26 17:49:20 +00:00
steps:
2023-03-25 20:59:22 +00:00
- uses: actions/checkout@v2
- name: Install D compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
2023-02-26 17:49:20 +00:00
2023-03-25 20:59:22 +00:00
- name: Run tests
run: dub -q test