tlang/.github/workflows/d.yml

43 lines
930 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
2023-03-26 11:43:17 +01:00
- uses: actions/upload-artifact@v3
2023-03-26 11:44:35 +01:00
with:
name: tbin
path: tlang
2023-03-26 11:43:17 +01:00
2023-03-25 20:59:22 +00:00
- name: Install D compiler
uses: dlang-community/setup-dlang@v1
with:
compiler: ${{ matrix.dc }}
2023-02-26 17:49:20 +00:00
2023-03-26 11:46:05 +01:00
- name: Build
run: dub build